home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994…tember: Reference Library / Dev.CD Sep 94.toast / Periodicals / develop / develop Issue 19 / develop 19 code / SimpliFace_V2 / Sources / ApplicationCommon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-15  |  968 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ApplicationCommon.h
  3.  
  4.     Contains:    Stuff common to Application.h and Application.r
  5.  
  6.  
  7.     Developed by:
  8.  
  9.     Paul G Smith (commstalk hq & Full Moon Software, Inc)
  10.  
  11.     you can leave messages at (UK): 0727 844232; (US): 408 253 7199
  12.     BUT I prefer to be contacted by e-mail
  13.     AppleLink:     COMMSTALK.HQ
  14.     Internet:     COMMSTALK.HQ@applelink.apple.com
  15.  
  16.     "SimpliFace2" Sample code to accompany develop article
  17.     on techniques for controlling script inheritance.
  18.     
  19.     
  20.  
  21.  
  22. */
  23.  
  24. #ifndef __APPLICATIONCOMMON__
  25. #define __APPLICATIONCOMMON__
  26.  
  27. /*
  28.     These definitions are shared by Rez and C++. We use #define statements
  29.     instead of constants in this file because Rez doesn't support constants.
  30.  */
  31.  
  32. /* Some constants for resource ID's */
  33. #define kApplicationErrStrings    128        /* error string list */
  34.  
  35. /* The following are indicies into our error STR# resource. */
  36. #define    eWrongMachine            1
  37. #define    eSmallSize                2
  38. #define    eNeedAS                    3
  39.  
  40. #define    rUserAlert    129                    /* user error alert */
  41.  
  42. #endif
  43.