101fda60.rss

来自「series60 应用程序开发的源代码 series60 应用程序开发的源代码」· RSS 代码 · 共 46 行

RSS
46
字号
/**
* 
* @brief Resource Registry Information
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
#include "RegistryInfo.rh"

RESOURCE REGISTRY_INFO r_theinfo
{
    // UID for the DLL
    dll_uid = 0x101FDA60;
    // Declare array of interface info
    interfaces = 
    {
        INTERFACE_INFO
        {
            // UID of interface that is implemented
            interface_uid = 0x101FDA5D;
            implementations = 
            {
                // Info for CCircle
                IMPLEMENTATION_INFO
                {
                    implementation_uid = 0x101FDA61;
                    version_no         = 1;
                    display_name       = "Circle shape";
                    default_data       = "CIRCLE";
                    opaque_data        = "";
                },
                // Info for CSquare
                IMPLEMENTATION_INFO
                {
                    implementation_uid = 0x101FDA62;
                    version_no         = 1;
                    display_name       = "Rectangle shape";
                    default_data       = "RECTANGLE";
                    opaque_data        = "";
                }
            };
        }
    };
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?