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

📄 svexunknownapp_reg.rss

📁 symbian下读取服务的程序
💻 RSS
字号:
// Copyright (c) 2006 Murray Read, All rights reserved

#include <appinfo.rh>
#include <SvexUnknownApp.rsg>
#include <SvexService.rh>

UID2 KUidAppRegistrationResourceFile
UID3 0xA000054B

RESOURCE APP_REGISTRATION_INFO
    {
    app_file = "SvexUnknownApp";
	hidden = KAppIsHidden;
    localisable_resource_file = "\\Resource\\Apps\\SvexUnknownApp";
    localisable_resource_id = R_LOCALISABLE_APP_INFO;
    // Here we register ourselves as a server app for a particular
    // service.
    service_list = 
    	{
    	SERVICE_INFO
    		{
    		// we implement the Service Info Service
			uid = KSvexServiceInfoServiceUid;
			datatype_list = {};
			// here's a link to the detail
			opaque_data = r_unknownApp_service_reg;
    		}
    	};
    }

// The detail of the Service Info Service registration.
// must conform to the SVEX_SERVICE structure.
RESOURCE SVEX_SERVICE r_unknownApp_service_reg
	{
	id = 0;			// no specific service recognised
	name = "Unknown";
	}

// End of File

⌨️ 快捷键说明

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