Leaked source code of windows server 2003
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.

84 lines
2.7 KiB

  1. #include "windows.h"
  2. #include "tapitna.h"
  3. STRINGTABLE
  4. BEGIN
  5. // IDS_TITLE "Telephony Location Selector"
  6. IDS_CAPTION, "Telephony Location Manager"
  7. IDS_ABOUTTEXT, "Telephony Location Manager - Version 1.01"
  8. IDS_SELECTNEWLOCATION, "I am dialing from "
  9. IDS_LOCATIONCHANGED, "The location has been automatically changed.\r\n Previous Location: %s\r\n Current Location: %s"
  10. IDS_CANTFINDLOCATIONID "The location ID [%ld] does not exist."
  11. IDS_CANTFINDLOCATIONNAME "The location [%s] does not exist."
  12. IDS_HELP "Usage:\r\n\r\nTLOCMGR [ /i xxx | /n nnn ] [ /x ]\r\n\r\n/n xxxx\tSet Telephony Location to existing name: xxxx\r\n/i nn\tSet Telephony Location to existing ID: nn\r\n/x\tExit immediately after setting new location"
  13. //IDS_HELP "\r\n-? Display usage list (this list)\r\n-N xxxx Set Telephony Location to existing name: xxxx\r\n-I nnn Set Telephony Location to existing ID: nnn\r\n-X Exit immediately after setting new location"
  14. // "Microsoft (R) Telephony Location Manager Version 1.00.0.0000" \
  15. // "Copyright (c) Microsoft Corp. 1996. All rights reserved.\r\n" \
  16. // "\r\n" \
  17. END
  18. IDR_RBUTTONMENU MENU DISCARDABLE
  19. BEGIN
  20. POPUP ""
  21. BEGIN
  22. MENUITEM "Start Phone Dialer", IDM_LAUNCHDIALER
  23. // MENUITEM "This space for rent", IDM_OTHERMENUITEM
  24. MENUITEM "About", IDM_ABOUT
  25. MENUITEM "Exit", IDM_CLOSEIT
  26. MENUITEM SEPARATOR
  27. #ifdef NASHVILLE_BUILD_FLAG
  28. #else
  29. MENUITEM "HOTDOCK Properties", IDM_PROPERTIES
  30. #endif
  31. MENUITEM "Dialing Properties", IDM_DIALINGPROPERTIES
  32. END
  33. END
  34. // /////////////////////////////////////////////////////////////////////////
  35. #include "general.rc"
  36. // /////////////////////////////////////////////////////////////////////////
  37. #if WINNT
  38. IDI_TAPITNAICON ICON DISCARDABLE "TAPITNA.ICO"
  39. #else
  40. IDI_TAPITNAICON ICON DISCARDABLE "..\\TAPITNA.ICO"
  41. #endif
  42. // /////////////////////////////////////////////////////////////////////////
  43. #if TAPI_NT
  44. #include <ntverp.h>
  45. #else
  46. #include <version.h>
  47. #endif
  48. #define VER_FILEDESCRIPTION_STR "Microsoft\256 Windows(TM) Telephony Location Manager"
  49. #define VER_INTERNALNAME_STR "TLocMgr"
  50. #define VER_ORIGINALFILENAME_STR "TLOCMGR.EXE"
  51. #define VER_LEGALCOPYRIGHT_YEARS "1996-99"
  52. #undef VER_PRODUCTVERSION
  53. #undef VER_PRODUCTVERSION_STR
  54. #define VER_PRODUCTVERSION 1.01.0.0000
  55. #define VER_PRODUCTVERSION_STR "1.01.0.0000"
  56. #define VER_FILETYPE VFT_APP
  57. #define VER_FILESUBTYPE VFT2_UNKNOWN
  58. #include <common.ver>
  59. // /////////////////////////////////////////////////////////////////////////
  60. // /////////////////////////////////////////////////////////////////////////