home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK11 / MFC / SAMPLES / TESTSERV / RESOURCE.H$ / resource
Encoding:
C/C++ Source or Header  |  1992-01-15  |  1.6 KB  |  59 lines

  1. // resource.h : Defines the resource constants for the Test Server
  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. // Object Edit Control Values
  21. #define IDC_OK          101
  22. #define IDC_CANCEL      102
  23. #define IDC_EDIT        103
  24. #define IDC_TITLE       104
  25. #define IDC_TEXT        105
  26. #define IDC_LIST        106
  27.  
  28. // File Menu Item Values
  29. #define IDM_NEW         200
  30. #define IDM_OPEN        201
  31. #define IDM_SAVE        202
  32. #define IDM_SAVEAS      203
  33. #define IDM_UPDATE      204
  34. #define IDM_EXIT        205
  35.  
  36. // Edit Menu Item Values
  37. #define IDM_COPYLINK    300
  38. #define IDM_COPYOBJECT  301
  39.  
  40. // Test Menu Item Values
  41. #define IDM_LOGGING     400
  42. #define IDM_REVOKESVR   401
  43. #define IDM_REVOKEDOC   402
  44. #define IDM_REVERTDOC   403
  45. #define IDM_SAVEDOC     404
  46. #define IDM_CLOSEDOC    405
  47. #define IDM_CHANGEDOC   406
  48. #define IDM_CHANGEITEM  407
  49.  
  50. // Help Menu Item Values
  51. #define IDM_ABOUT       500
  52.  
  53. // Dialog Values
  54. #define IDDT_ABOUT      1000
  55. #define IDDT_EDIT       1001
  56.  
  57. #endif // __RESOURCE_H__
  58.  
  59.