当前位置: 首页>>代码示例>>C++>>正文


C++ s3eMapViewFuncs类代码示例

本文整理汇总了C++中s3eMapViewFuncs的典型用法代码示例。如果您正苦于以下问题:C++ s3eMapViewFuncs类的具体用法?C++ s3eMapViewFuncs怎么用?C++ s3eMapViewFuncs使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了s3eMapViewFuncs类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: s3eMapViewRemovePOI

void s3eMapViewRemovePOI(s3eMapView* pMapView, s3eMapViewPOI* poi)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[10] func: s3eMapViewRemovePOI"));

    if (!_extLoad())
        return;

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

    g_Ext.m_s3eMapViewRemovePOI(pMapView, poi);

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

    return;
}
开发者ID:Lextar,项目名称:s3eMapView,代码行数:19,代码来源:s3eMapView_interface.cpp

示例2: IwTrace

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;
}
开发者ID:Lextar,项目名称:s3eMapView,代码行数:19,代码来源:s3eMapView_interface.cpp

示例3: _s3eMapViewGoTo

void _s3eMapViewGoTo(s3eMapView* pMapView, const s3eMapViewCoord* center, const s3eMapViewSpan* span, bool animate)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[8] func: _s3eMapViewGoTo"));

    if (!_extLoad())
        return;

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

    g_Ext.m__s3eMapViewGoTo(pMapView, center, span, animate);

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

    return;
}
开发者ID:Lextar,项目名称:s3eMapView,代码行数:19,代码来源:s3eMapView_interface.cpp

示例4: s3eMapViewSetShowUserLocation

void s3eMapViewSetShowUserLocation(s3eMapView* pMapView, bool show)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[7] func: s3eMapViewSetShowUserLocation"));

    if (!_extLoad())
        return;

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

    g_Ext.m_s3eMapViewSetShowUserLocation(pMapView, show);

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

    return;
}
开发者ID:Lextar,项目名称:s3eMapView,代码行数:19,代码来源:s3eMapView_interface.cpp

示例5: s3eMapViewSetType

void s3eMapViewSetType(s3eMapView* pMapView, s3eMapViewType type)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[6] func: s3eMapViewSetType"));

    if (!_extLoad())
        return;

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

    g_Ext.m_s3eMapViewSetType(pMapView, type);

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

    return;
}
开发者ID:Lextar,项目名称:s3eMapView,代码行数:19,代码来源:s3eMapView_interface.cpp

示例6: s3eMapViewSetScreenRect

void s3eMapViewSetScreenRect(s3eMapView* pMapView, int x, int y, int w, int h)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[4] func: s3eMapViewSetScreenRect"));

    if (!_extLoad())
        return;

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

    g_Ext.m_s3eMapViewSetScreenRect(pMapView, x, y, w, h);

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

    return;
}
开发者ID:Lextar,项目名称:s3eMapView,代码行数:19,代码来源:s3eMapView_interface.cpp

示例7: IwTrace

s3eResult s3eMapViewRegister(s3eMapViewCallback cbid, s3eCallback fn, void* userData)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[0] func: s3eMapViewRegister"));

    if (!_extLoad())
        return S3E_RESULT_ERROR;

#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

    s3eResult ret = g_Ext.m_s3eMapViewRegister(cbid, fn, userData);

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

    return ret;
}
开发者ID:sanyaade-mobiledev,项目名称:s3eMapView,代码行数:21,代码来源:s3eMapView_interface.cpp

示例8: s3eMapViewRemovePOI

void s3eMapViewRemovePOI(s3eMapView* pMapView, s3eMapViewPOI* poi)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[10] func: s3eMapViewRemovePOI"));

    if (!_extLoad())
        return;

#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

    g_Ext.m_s3eMapViewRemovePOI(pMapView, poi);

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

    return;
}
开发者ID:sanyaade-mobiledev,项目名称:s3eMapView,代码行数:21,代码来源:s3eMapView_interface.cpp

示例9: _s3eMapViewGoTo

void _s3eMapViewGoTo(s3eMapView* pMapView, const s3eMapViewCoord* center, const s3eMapViewSpan* span, bool animate)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[8] func: _s3eMapViewGoTo"));

    if (!_extLoad())
        return;

#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

    g_Ext.m__s3eMapViewGoTo(pMapView, center, span, animate);

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

    return;
}
开发者ID:sanyaade-mobiledev,项目名称:s3eMapView,代码行数:21,代码来源:s3eMapView_interface.cpp

示例10: s3eMapViewSetShowUserLocation

void s3eMapViewSetShowUserLocation(s3eMapView* pMapView, bool show)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[7] func: s3eMapViewSetShowUserLocation"));

    if (!_extLoad())
        return;

#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

    g_Ext.m_s3eMapViewSetShowUserLocation(pMapView, show);

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

    return;
}
开发者ID:sanyaade-mobiledev,项目名称:s3eMapView,代码行数:21,代码来源:s3eMapView_interface.cpp

示例11: s3eMapViewSetScreenRect

void s3eMapViewSetScreenRect(s3eMapView* pMapView, int x, int y, int w, int h)
{
    IwTrace(MAPVIEW_VERBOSE, ("calling s3eMapView[4] func: s3eMapViewSetScreenRect"));

    if (!_extLoad())
        return;

#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

    g_Ext.m_s3eMapViewSetScreenRect(pMapView, x, y, w, h);

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

    return;
}
开发者ID:sanyaade-mobiledev,项目名称:s3eMapView,代码行数:21,代码来源:s3eMapView_interface.cpp


注:本文中的s3eMapViewFuncs类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。