home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / MLTE SDK / TEtoMLTESample / CommonSources / TApplicationCommon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-24  |  1.3 KB  |  48 lines  |  [TEXT/MPS ]

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    Apple Macintosh Developer Technical Support
  4. #
  5. #    MultiFinder-Aware Simple Application Framework
  6. #
  7. #    TApplicationCommon.h    -    C++ and Rez source
  8. #
  9. #    Copyright © 1991 Apple Computer, Inc.
  10. #    All rights reserved.
  11. #
  12. #    Versions:    
  13. #            1.20                    10/91
  14. #            1.10                     07/89
  15. #            1.00                     04/89
  16. #
  17. #    Components:
  18. #            TApplicationCommon.h    July 9, 1989
  19. #            TApplication.h            July 9, 1989
  20. #            TApplication.cp            July 9, 1989
  21. #            TApplication.r            July 9, 1989
  22. #            TDocument.h                July 9, 1989
  23. #
  24. #    TApplication is a rudimentary application framework
  25. #    for C++.
  26. #
  27. ------------------------------------------------------------------------------*/
  28.  
  29. #ifndef TApplicationCommon_Defs
  30. #define TApplicationCommon_Defs
  31.  
  32. /*
  33.     These definitions are shared by Rez and C++. We use #define statements
  34.     instead of constants in this file because Rez doesn't support constants.
  35.  */
  36.  
  37. /* Some constants for resource ID's */
  38. #define kErrStrings    128                /* error string list */
  39. #define    rUserAlert    129                /* user error alert */
  40.  
  41. /* The following are indicies into our error STR# resource. */
  42. #define    eWrongMachine            1
  43. #define    eSmallSize                2
  44. //change add eInitializeMLTEFailure
  45. #define eInitializeMLTEFailure    3
  46.  
  47. #endif // TApplicationCommon_Defs
  48.