home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK8 / MFC / SAMPLES / TESTCLNT / RESOURCE.H$ / resource
Encoding:
C/C++ Source or Header  |  1992-03-18  |  2.1 KB  |  74 lines

  1. // resource.h : Defines the resource constants for the Test Client 
  2. //              application.
  3. //
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and Microsoft
  10. // QuickHelp documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13. //
  14. // Note that this window only contains #define directives.  This makes it
  15. // suitable for including in the testclnt.rc resource file.
  16.  
  17. #ifndef __RESOURCE_H__
  18. #define __RESOURCE_H__
  19.  
  20. // File menu
  21. #define IDM_OPEN            0x100
  22. #define IDM_REVERT          0x101
  23. #define IDM_SAVE            0x102
  24. #define IDM_SAVEAS          0x103
  25. #define IDM_EXIT            0x104
  26.  
  27. // Edit menu
  28. #define IDM_COPY            0x200
  29. #define IDM_PASTE           0x201
  30. #define IDM_PASTELINK       0x202
  31. #define IDM_LINKS           0x203
  32.  
  33. // Object Menu
  34. #define IDM_INSERT_OBJECT   0x300
  35. #define IDM_OBJECT_VERB_MIN 0x301
  36. #define IDM_OBJECT_VERB_MAX 0x3ff
  37.  
  38. // Testing popup menu
  39. #define IDM_LOGGING         0x400
  40. #define IDM_CLOSE           0x401
  41. #define IDM_UPDATE          0x402
  42. #define IDM_RELEASE         0x403
  43. #define IDM_DELETE          0x404
  44. #define IDM_RECONNECT       0x405
  45. #define IDM_REVERTDOC       0x406
  46. #define IDM_SAVED           0x407
  47.  
  48. // Help Menu
  49. #define IDM_ABOUT           0x500
  50.  
  51. #define IDDT_ABOUT          1
  52.  
  53. // Dialog control IDs
  54. #define IDD_LISTBOX         0x1000
  55.  
  56. // commands (used as control IDs as well as notifications
  57. #define IDC_OBJECTFORMAT    0x1010
  58. #define IDC_CLIPFORMAT      0x100A
  59. #define IDC_INFOTITLE       0x100B
  60. #define IDC_INFOCLIPFORMAT  0x100C
  61. #define IDC_INFOOBJECTFORMAT 0x100D
  62. #define IDC_INFONAME        0x100E
  63. #define IDC_INFOITEM        0x100F
  64.  
  65. // String Tables
  66. #define IDS_APPNAME         0x2000
  67.  
  68. // Misc
  69. #define ID_APPLICATION      1
  70. #define ID_VERB_POS         21
  71.  
  72. #endif // __RESOURCE_H__
  73.  
  74.