home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / Nuntius 1.2 / src / Nuntius / Misc.r < prev    next >
Encoding:
Text File  |  1994-04-13  |  1.1 KB  |  57 lines  |  [TEXT/MPS ]

  1. // Copyright © 1992 Peter Speck, speck@dat.ruc.dk. All rights reserved.
  2. // Misc.r
  3. /* ==============================   Includes   ================================= */
  4.  
  5. #include "SysTypes.r"
  6. #include "Types.r"
  7.  
  8. #ifndef _MacAppTypes_
  9. #include "MacAppTypes.r"
  10. #endif
  11.  
  12. #ifndef __RSRCGLOBALS__
  13. #include "RsrcGlobals.h"
  14. #endif
  15.  
  16. #if qDebug
  17. include "Debug.rsrc";
  18. #endif
  19. include "MacApp.rsrc";
  20. include "Dialog.rsrc";
  21. include "Printing.rsrc";
  22.  
  23. #include "Menus.r"
  24. #include "Errors.r"
  25. #include "Views.r"
  26.  
  27. resource 'mem!' (1024, purgeable)
  28. {
  29.     0, 24 * 1024, 0
  30. };
  31.  
  32. #define VERSION_STUFF     \
  33.     0x1,                \
  34.     0x20,                \
  35.     final,                \
  36.     1,                    \
  37.     verUS,                \
  38.     "Version 1.2",        \
  39.     "Nuntius v1.2 by Peter Speck (speck@dat.ruc.dk)"
  40.  
  41. resource 'vers' (1, preload) {  // preloaded as it is used in FatalError()
  42.     VERSION_STUFF
  43. };
  44.  
  45. resource 'vers' (2, preload) {  // preloaded as it is used in FatalError()
  46.     VERSION_STUFF
  47. };
  48.  
  49. resource 'TxSt' (kAboutBoxVersionTS, "kAboutBoxVersionTS") {
  50.     tsPlain, 10, black, "Times"
  51. };
  52.  
  53. resource 'res!' (1100, "Nuntius, resident segments", purgeable) {{
  54.     "MacApp&Nuntius";
  55.     "GInit";
  56. }};
  57.