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.

54 lines
1.5 KiB

  1. #if DBG
  2. #define DEBUG
  3. #endif
  4. #include "resource.h"
  5. #include <ntverp.h>
  6. #define VER_FILETYPE VFT_APP
  7. #define VER_FILESUBTYPE VFT2_UNKNOWN
  8. #define VER_FILEDESCRIPTION_STR "Tablet PC Listener Service"
  9. #define VER_INTERNALNAME_STR "tabsrv.exe"
  10. #define VER_ORIGINALFILENAME_STR "tabsrv.exe"
  11. #define VER_LEGALCOPYRIGHT_STR "Copyright (C) Microsoft Corp. 1999-2000\0"
  12. #include <winver.h>
  13. #include <common.ver>
  14. //
  15. // Icon
  16. //
  17. // Icon with lowest ID value placed first to ensure application icon
  18. // remains consistent on all systems.
  19. IDI_SUPERTIP ICON DISCARDABLE "SuperTIP.ico"
  20. IDC_NORMAL CURSOR DISCARDABLE "normal.cur"
  21. IDC_PRESSHOLD CURSOR DISCARDABLE "preshold.cur"
  22. //
  23. // Menu
  24. //
  25. IDR_TRAYMENU MENU DISCARDABLE
  26. BEGIN
  27. POPUP "Tray"
  28. BEGIN
  29. MENUITEM "Show &SuperTIP", IDM_OPEN
  30. MENUITEM SEPARATOR
  31. MENUITEM "&Rotate Screen to Portrait", IDM_TOGGLE_ROTATION
  32. #ifdef DEBUG
  33. MENUITEM "&Properties...", IDM_PROPERTIES
  34. #endif
  35. END
  36. END
  37. STRINGTABLE PRELOAD DISCARDABLE
  38. BEGIN
  39. IDS_TABSRV_TITLE "Tablet PC Listener Service"
  40. IDS_SUPERTIP_TITLE "SuperTIP"
  41. IDS_BALLOON_TEXT "To show the text entry window, tap on the pen icon."
  42. IDS_SHOW_SUPERTIP "Show &SuperTip"
  43. IDS_HIDE_SUPERTIP "Hide &SuperTip"
  44. IDS_SCREEN_PORTRAIT "&Rotate Screen to Portrait"
  45. IDS_SCREEN_LANDSCAPE "&Rotate Screen to Landscape"
  46. END