home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / ISp Sample / Source / AppShellResources.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.3 KB  |  86 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        AppShellResources.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Copyright:    © 1999 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     File Ownership:
  11.  
  12.         DRI:                xxx put dri here xxx
  13.  
  14.         Other Contact:        xxx put other contact here xxx
  15.  
  16.         Technology:            xxx put technology here xxx
  17.  
  18.     Writers:
  19.  
  20.         (BWS)    Brent Schorsch
  21.  
  22.     Change History (most recent first):
  23.  
  24.        <SP1>      7/1/99    BWS        first checked in
  25. */
  26.  
  27. #ifndef __APPSHELLRESOURCES__
  28. #define __APPSHELLRESOURCES__
  29.  
  30. //•    ————————————————————————————————————————    Includes
  31. //•    ————————————————————————————————————————    Public Definitions
  32. //•    ————————————————————————————————————————    Public Types
  33.  
  34. enum
  35. {
  36.     kMBAR_Main            =    128,
  37.  
  38.     kMENU_Apple            =    128,
  39.     kMENU_File,
  40.     kMENU_Edit
  41. };
  42.  
  43. enum
  44. {
  45.     kMenuCMD_AboutBox    =    'abot'
  46. };
  47.  
  48. enum
  49. {
  50.     kMenuCMD_StartGame        =    'strt',
  51.     kMenuCMD_ConfigureInput    =    'cnfg',
  52.     kMenuCMD_Quit            =    'quit'
  53. };
  54.  
  55. enum
  56. {
  57.     kMenuCMD_Undo        =    'undo',
  58.     kMenuCMD_Cut        =    'cut ',
  59.     kMenuCMD_Copy        =    'copy',
  60.     kMenuCMD_Paste        =    'past',
  61.     kMenuCMD_Clear        =    'cler'
  62. };
  63.  
  64. enum
  65. {
  66.     kSTRn_AboutBoxStrings    =    128
  67. };
  68.  
  69. enum
  70. {
  71.     kWIND_MainWindow    =    128
  72. };
  73.  
  74. //•    ————————————————————————————————————————    Public Variables
  75. //•    ————————————————————————————————————————    Public Functions
  76.  
  77. #ifdef __cplusplus
  78. extern "C" {
  79. #endif
  80.  
  81. #ifdef __cplusplus
  82. }
  83. #endif
  84.  
  85. #endif
  86.