|
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file serverapp_reg.rss |
|
18 @internalComponent - Internal Symbian test code |
|
19 */ |
|
20 |
|
21 #include <appinfo.rh> |
|
22 |
|
23 UID2 KUidAppRegistrationResourceFile |
|
24 UID3 0x10004c56 // UID of the application this registration file represents |
|
25 |
|
26 RESOURCE APP_REGISTRATION_INFO |
|
27 { |
|
28 app_file="serverapp"; |
|
29 // |
|
30 datatype_list = |
|
31 { |
|
32 DATATYPE { priority=EDataTypePriorityNormal; type="text/plain"; }, |
|
33 DATATYPE { priority=EDataTypePriorityNormal; type="text/priority"; } |
|
34 }; |
|
35 |
|
36 service_list = |
|
37 { |
|
38 SERVICE_INFO { uid = 0x01020304; opaque_data = r_first_service_specific_data;}, |
|
39 SERVICE_INFO |
|
40 { |
|
41 uid = 0x02030405; |
|
42 datatype_list = |
|
43 { |
|
44 DATATYPE { priority=EDataTypePriorityNormal; type="text/custom1"; } |
|
45 }; |
|
46 opaque_data = r_second_service_specific_data; |
|
47 }, |
|
48 SERVICE_INFO { uid = 0x05060708; opaque_data = r_third_service_specific_data;}, |
|
49 SERVICE_INFO { uid = 0x05060708; opaque_data = r_fourth_service_specific_data;}, |
|
50 SERVICE_INFO { uid = 0x01020333;} |
|
51 }; |
|
52 } |
|
53 |
|
54 STRUCT SERVICE_NAME |
|
55 { |
|
56 LTEXT name = ""; |
|
57 } |
|
58 |
|
59 RESOURCE SERVICE_NAME r_first_service_specific_data |
|
60 { |
|
61 name = "Non-localised text for service uid 0x01020304"; |
|
62 } |
|
63 |
|
64 RESOURCE SERVICE_NAME r_second_service_specific_data |
|
65 { |
|
66 name = "Non-localised text for service uid 0x02030405"; |
|
67 } |
|
68 |
|
69 RESOURCE SERVICE_NAME r_third_service_specific_data |
|
70 { |
|
71 name = "Non-localised resource A"; |
|
72 } |
|
73 |
|
74 RESOURCE SERVICE_NAME r_fourth_service_specific_data |
|
75 { |
|
76 name = "Non-localised resource B"; |
|
77 } |