1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- ============================================================================
- Name : wrt_iap_enabler.rss
- Author : Nokia
- Copyright : Nokia Corporation
- Description : Registry file for the Interface Implementation Collection
- ============================================================================
- */
- #include <RegistryInfo.rh>
- #include "../inc/iap_enabler_uids.hrh"
- // Declares info for implementations
- RESOURCE REGISTRY_INFO theInfo
- {
- // UID for the DLL. Must me same as in mmp file
- dll_uid = APPLICATIONUID;
- // Declare array of interface info
- interfaces =
- {
- INTERFACE_INFO
- {
- // UID of interface that is implemented. UID of the ApiBridge interface
- // DO Not Change
- interface_uid = 0x20023711;
- implementations =
- {
- IMPLEMENTATION_INFO
- {
- //The UID of your implementation
- implementation_uid = INTERFACEUID;
- version_no = 1;
- display_name = "IAP client";
- default_data = "/nokia/iapplugin";
- }
- };
- }
- };
- }
|