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.

65 lines
1.8 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: test.h
  7. //
  8. // Contents: globaly defined constance, IDs and structures for Galactic War
  9. //
  10. //
  11. // History: 9-30-94 stevebl Created
  12. //
  13. //----------------------------------------------------------------------------
  14. #ifndef __TEST_H__
  15. #define __TEST_H__
  16. #include <windows.h>
  17. #include "message.h"
  18. // string constants
  19. #define VER_FILEDESCRIPTION_STR "OLE2UI32 Test Ap"
  20. #define VER_INTERNALNAME_STR "TOLE2UI"
  21. #define VER_ORIGINALFILENAME_STR "TOLE2UI.EXE"
  22. #define MAIN_WINDOW_CLASS_NAME "TOLE2UIWindow"
  23. #define MAIN_WINDOW_CLASS_MENU TOLE2UIMenu
  24. #define MAIN_WINDOW_CLASS_MENU_STR "TOLE2UIMenu"
  25. // menu command identifiers
  26. #define IDM_EXIT 101
  27. #define IDM_INSERTOBJECT 102
  28. #define IDM_PASTESPECIAL 103
  29. #define IDM_EDITLINKS 104
  30. #define IDM_CHANGEICON 105
  31. #define IDM_CONVERT 106
  32. #define IDM_CANCONVERT 107
  33. #define IDM_BUSY 108
  34. #define IDM_CHANGESOURCE 110
  35. #define IDM_OBJECTPROPS 111
  36. #define IDM_PROMPTUSER 112
  37. #define IDM_UPDATELINKS 113
  38. #define IDM_HELP 202
  39. #define IDM_ABOUT 202
  40. // string identifiers
  41. #define IDS_ERROR 1000
  42. #define IDS_OUTOFMEMORY 1001
  43. #define IDS_OLEINITFAILED 1002
  44. #define IDS_BADOLEVERSION 1003
  45. #define IDS_RETURN 1004
  46. #define IDS_INSERTOBJECT 1005
  47. #define IDS_PASTESPECIAL 1006
  48. #define IDS_NOCLIPBOARD 1007
  49. #define IDS_EDITLINKS 1008
  50. #define IDS_CHANGEICON 1009
  51. #define IDS_CONVERT 1010
  52. #define IDS_CANCONVERT 1011
  53. #define IDS_BUSY 1012
  54. #define IDS_CHANGESOURCE 1013
  55. #define IDS_OBJECTPROPS 1014
  56. #define IDS_PROMPTUSER 1015
  57. #define IDS_UPDATELINKS 1016
  58. #endif // __TEST_H__