⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 101f614f.rss

📁 国内著名嵌入式培训机构内部资料,内含一些实例代码,包括技术专题书籍
💻 RSS
字号:

/*
* ============================================================================
*  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -