home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / activedocument / framer / resource.h < prev    next >
C/C++ Source or Header  |  1997-08-12  |  1KB  |  42 lines

  1. /*
  2.  * RESOURCE.H
  3.  * Document Objects Framer
  4.  *
  5.  * Definitions specifically pertaining to resources for the application.
  6.  *
  7.  * Copyright (c)1995-1997 Microsoft Corporation, All Rights Reserved
  8.  */
  9.  
  10.  
  11. #ifndef _RESOURCE_H_
  12. #define _RESOURCE_H_
  13.  
  14. //Number of menus.
  15. #define CMENUS                              2
  16.  
  17. //Resource identifiers.
  18. #define IDR_MENU                            1
  19. #define IDR_MENUHELP                        2
  20. #define IDR_ACCELERATORS                    1
  21. #define IDD_ABOUT                           1
  22.  
  23. //Number of items on IDR_MENUHELP
  24. #define CHELPITEMS                          1
  25.  
  26. //Menu command identifiers.
  27. #define IDM_FILEOPEN                        101
  28. #define IDM_FILECLOSE                       102
  29. #define IDM_FILEEXIT                        105
  30.  
  31. #define IDM_HELPABOUT                       200
  32. #define IDM_CUSTOMHELPMIN                   201
  33.  
  34.  
  35. //Enters context help in in-place mode
  36. #define IDM_ENTERCONTEXTHELP                300
  37. #define IDM_ESCAPECONTEXTHELP               301
  38.  
  39. #define CACCELERATORS                       2
  40.  
  41. #endif //_RESOURCE_H_
  42.