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 / SprocketInvaders / Source / SIResources.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  2.9 KB  |  126 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        SIResources.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.         (cjd)    Chris De Salvo
  21.  
  22.     Change History (most recent first):
  23.  
  24.        <SP4>     1/29/99    cjd        Added resources for new CD controller sprites
  25. */
  26.  
  27. //•    ------------------------------------------------------------------------------------------    •
  28. //•
  29. //•    Copyright © 1996 Apple Computer, Inc., All Rights Reserved
  30. //•
  31. //•
  32. //•        You may incorporate this sample code into your applications without
  33. //•        restriction, though the sample code has been provided "AS IS" and the
  34. //•        responsibility for its operation is 100% yours.  However, what you are
  35. //•        not permitted to do is to redistribute the source as "DSC Sample Code"
  36. //•        after having made changes. If you're going to re-distribute the source,
  37. //•        we require that you make it clear in the source that the code was
  38. //•        descended from Apple Sample Code, but that you've made changes.
  39. //•
  40. //•        Authors:
  41. //•            Chris De Salvo
  42. //•
  43. //•    ------------------------------------------------------------------------------------------    •
  44.  
  45. #ifndef __SIRESOURCES__
  46. #define __SIRESOURCES__
  47.  
  48. //•    ------------------------------    Includes
  49. //•    ------------------------------    Public Definitions
  50.  
  51. //•    'ALRT' resources
  52.  
  53. #define kALRTAboutBox                128
  54. #define kALRTNoSoundSprocket        129
  55. #define kALRTFatal                    2000
  56. #define kALRTWarning                2001
  57. #define kALRTNonFatal                2002
  58. #define kALRTMessage                2003
  59.  
  60. //•    'CLUT' resources
  61.  
  62. #define kCLUTSprites                1000
  63. #define kCLUTTwoPlanets                2000
  64. #define kCLUTGasCloud                2001
  65.  
  66. //•    'MBAR' resources
  67.  
  68. #define kMBARMain                    128
  69.  
  70. //•    'MENU' resources
  71.  
  72. #define kMENUApple                    128
  73. #define kMENUFile                    129
  74. #define kMENUEdit                    130
  75. #define kMENUOptions                131
  76.  
  77. //•    'PICT' resources
  78.  
  79. #define kPICTTwoPlanets                2000
  80. #define kPICTGasCloud                2001
  81.  
  82. //•    'SND ' resources
  83.  
  84. #define kSND_PlayerFire                2000
  85. #define kSND_PlayerHit                2001
  86. #define kSND_EnemyFire                2002
  87. #define kSND_EnemyHit                2003
  88.  
  89. //•    'SPRT' resources
  90.  
  91. #define kSPRTPlayer                    128
  92. #define kSPRTPlayerShot                129
  93. #define kSPRTPoints                    130
  94. #define kSPRTEnemy                    131
  95. #define kSPRTEnemyShot                132
  96. #define kSPRTPlayer2                133
  97. #define kSPRTPlayButton                134
  98. #define kSPRTStopButton                135
  99. #define kSPRTPrevButton                136
  100. #define kSPRTSkipButton                137
  101.  
  102. //•    'STR#' resources
  103.  
  104. #define kSTRMessageStrings            2000
  105. #define kSTRiFatal                    1
  106. #define kSTRiWarning                2
  107. #define kSTRiNonFatal                3
  108. #define kSTRiFileError                4
  109.  
  110. //•    'WIND' resources
  111.  
  112. #define kWINDMain                    128
  113.  
  114. //•    ------------------------------    Public Types
  115. //•    ------------------------------    Public Variables
  116. //•    ------------------------------    Public Functions
  117.  
  118. #ifdef __cplusplus
  119. extern "C" {
  120. #endif
  121.  
  122. #ifdef __cplusplus
  123. }
  124. #endif
  125.  
  126. #endif