Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
685 B

  1. // File: service.rc
  2. #include <winres.h>
  3. #include <resource.h>
  4. #define VER_FILETYPE VFT_DLL
  5. #define VER_DESCRIPTION_STR "Sample Remote Desktop Sharing Service\0"
  6. #define VER_INTERNALNAME_STR "service\0"
  7. #define VER_ORIGNAME_STR "service.exe\0"
  8. #include <version.rc>
  9. IDI_SM_WORLD ICON DISCARDABLE "service.ico"
  10. STRINGTABLE DISCARDABLE
  11. BEGIN
  12. IDS_MNMSRVC_TITLE "Sample Remote Desktop Sharing Service"
  13. IDS_MNMSRVC_DESCRIPTION "Allows authorized people to remotely access your Windows desktop using Salem."
  14. END
  15. IDR_TASKBAR_POPUP MENU DISCARDABLE
  16. BEGIN
  17. POPUP ""
  18. BEGIN
  19. MENUITEM "E&xit", IDM_TBPOPUP_STOP
  20. END
  21. END