工程中处理symbian版本号的示例代码
#ifdef __SERIES60_3X__
#define KShoutcastDLLUid 0xE020240A
#else
#ifdef EKA2 //this file is also included in resources
#define KShoutcastDLLUid 0xE020240A
#else //2.x
#define KShoutcastDLLUid 0x1020240A
#endif //EKA2
#endif //__SERIES60_3X__
Symbian版本号处理
本文提供了一段示例代码,用于根据不同Symbian版本处理特定的DLL标识符。通过预处理指令,代码展示了如何针对Symbian的不同版本定义不同的UID。
3260

被折叠的 条评论
为什么被折叠?



