picodrive_reg.rss 748 B

1234567891011121314151617
  1. // All registration files need to #include appinfo.rh.
  2. #include <appinfo.rh>
  3. // All registration files must define UID2, which is always
  4. // KUidAppRegistrationResourceFile, and UID3, which is the application's UID.
  5. // ? UID2 KUidAppRegistrationResourceFile
  6. // ? UID3 0xA00010F3 // application UID
  7. // Registration file need to containo an APP_REGISTRATION_INFO resource that
  8. // minimally needs to provide the name of the application binary (using the
  9. // app_file statement).
  10. RESOURCE APP_REGISTRATION_INFO
  11. {
  12. app_file = "PicoDrive"; // filename of application binary (minus extension)
  13. // Specify the location of the localisable icon/caption definition file
  14. localisable_resource_file = "\\Resource\\Apps\\PicoDrive_loc";
  15. }