101f614f.rss
来自「国内著名嵌入式培训机构内部资料,内含一些实例代码,包括技术专题书籍」· RSS 代码 · 共 65 行
RSS
65 行
/*
* ============================================================================
* Name : Shape implementation for DLL 101F614F
* Part of : shapeplugin
* Created : 29/05/2006 by Forum Nokia
* Description:
* Resource file used to register ecom dll's with registry.
* Version : 2.0
* Copyright: Forum Nokia
* ============================================================================
*/
#include <ecom/RegistryInfo.rh>
RESOURCE REGISTRY_INFO theInfo
{
// UID for the DLL
#ifdef EKA2
dll_uid = 0xE01F614F;
#else
dll_uid = 0x101F614F;
#endif
// Declare array of interface info
interfaces =
{
INTERFACE_INFO
{
// UID of interface that is implemented
interface_uid = 0x101F614C;
implementations =
{
// Info for CCircle
IMPLEMENTATION_INFO
{
implementation_uid = 0x101F6150;
version_no = 1;
display_name = "Circle shape";
default_data = "CIRCLE";
opaque_data = "";
},
// Info for CSquare
IMPLEMENTATION_INFO
{
implementation_uid = 0x101F6151;
version_no = 1;
display_name = "Square shape";
default_data = "SQUARE";
opaque_data = "";
},
// Info for CTriangle
IMPLEMENTATION_INFO
{
implementation_uid = 0x101F6152;
version_no = 1;
display_name = "Triangle shape";
default_data = "TRIANGLE";
opaque_data = "";
}
};
}
};
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?