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

  1. /* resource.h : Defines the resource constants for the application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13. // This file contains only #define directives, thus it can be
  14. // included in the resource script.
  15. */
  16.  
  17.  
  18. #ifndef __RESOURCE_H__
  19. #define __RESOURCE_H__
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. //  MENU CONTROL VALUES
  23.  
  24. #define IDM_BOUNCE      10
  25. #define IDM_HELLO       11
  26. #define IDM_EXIT        12
  27.  
  28. #define IDM_BLACK       20
  29. #define IDM_RED         21
  30. #define IDM_GREEN       22
  31. #define IDM_BLUE        23
  32. #define IDM_WHITE       24
  33. #define IDM_CUSTOM      25
  34.  
  35. #define IDM_FAST        30
  36. #define IDM_SLOW        31
  37.  
  38. #define IDM_CASCADE     41
  39. #define IDM_TILE        42
  40. #define IDM_ARRANGE     43
  41. #define IDM_MAXIMIZE    44
  42. #define IDM_NEXT        45
  43. #define IDM_RESTORE     46
  44.  
  45. #define IDM_ABOUT       50
  46.  
  47. #define IDM_FIRSTCHILD  200
  48.  
  49.  
  50. #endif // __RESOURCE_H__
  51.  
  52.