wrt_iap_enabler.rss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. ============================================================================
  3. Name : wrt_iap_enabler.rss
  4. Author : Nokia
  5. Copyright : Nokia Corporation
  6. Description : Registry file for the Interface Implementation Collection
  7. ============================================================================
  8. */
  9. #include <RegistryInfo.rh>
  10. #include "../inc/iap_enabler_uids.hrh"
  11. // Declares info for implementations
  12. RESOURCE REGISTRY_INFO theInfo
  13. {
  14. // UID for the DLL. Must me same as in mmp file
  15. dll_uid = APPLICATIONUID;
  16. // Declare array of interface info
  17. interfaces =
  18. {
  19. INTERFACE_INFO
  20. {
  21. // UID of interface that is implemented. UID of the ApiBridge interface
  22. // DO Not Change
  23. interface_uid = 0x20023711;
  24. implementations =
  25. {
  26. IMPLEMENTATION_INFO
  27. {
  28. //The UID of your implementation
  29. implementation_uid = INTERFACEUID;
  30. version_no = 1;
  31. display_name = "IAP client";
  32. default_data = "/nokia/iapplugin";
  33. }
  34. };
  35. }
  36. };
  37. }