예제 #1
0
const char* s3eMapViewGetPlatformLicensingString()
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[11] func: s3eMapViewGetPlatformLicensingString"));

    if (!_extLoad())
        return NULL;

#ifdef LOADER_CALL_LOCK
    s3eDeviceLoaderCallStart(S3E_TRUE, NULL);
#endif

    const char* ret = g_Ext.m_s3eMapViewGetPlatformLicensingString();

#ifdef LOADER_CALL_LOCK
    s3eDeviceLoaderCallDone(S3E_TRUE, NULL);
#endif

    return ret;
}
const char* s3eMapViewGetPlatformLicensingString()
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[11] func: s3eMapViewGetPlatformLicensingString"));

    if (!_extLoad())
        return NULL;

#ifdef __mips
    // For MIPs platform we do not have asm code for stack switching 
    // implemented. So we make LoaderCallStart call manually to set GlobalLock
    s3eDeviceLoaderCallStart(S3E_TRUE, NULL);
#endif

    const char* ret = g_Ext.m_s3eMapViewGetPlatformLicensingString();

#ifdef __mips
    s3eDeviceLoaderCallDone(S3E_TRUE, NULL);
#endif

    return ret;
}