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

  1. // Copyright © 1992 Peter Speck, speck@dat.ruc.dk. All rights reserved.
  2. // Nuntius.r
  3.  
  4. include "Nuntius" 'CODE';
  5. include "Nuntius.ResEdit";
  6. include "Nuntius.AdLib" not 'ALIB';
  7. include "Misc.rsrc";
  8. include "Strings.rsrc";
  9.  
  10. /* ================================   SIZE        ================================== */
  11. type 'SIZE' {
  12.         boolean                    reserved;
  13.         boolean                 ignoreSuspendResumeEvents, acceptSuspendResumeEvents;
  14.         boolean                    reserved;
  15.         boolean                    cannotBackground, canBackground;
  16.         boolean                    needsActivateOnFGSwitch, doesActivateOnFGSwitch;            
  17.         boolean                    backgroundAndForeground, onlyBackground;                    
  18.         boolean                    dontGetFrontClicks,    getFrontClicks;                    
  19.         boolean                    ignoreAppDiedEvents, acceptAppDiedEvents;            
  20.         boolean                    not32BitCompatible,    is32BitCompatible;                
  21.         boolean                    notHighLevelEventAware, isHighLevelEventAware;            
  22.         boolean                    onlyLocalHLEvents, localAndRemoteHLEvents;            
  23.         boolean                    notStationeryAware, isStationeryAware;                
  24.         boolean                    dontUseTextEditServices, useTextEditServices;             
  25.         boolean                    reserved;                        
  26.         boolean                    reserved;                        
  27.         boolean                    reserved;                        
  28.         unsigned longint;                                        
  29.         unsigned longint;                                        
  30. #define    reserved        false
  31. };
  32.  
  33. resource 'SIZE' (-1) {
  34.     reserved,
  35.     acceptSuspendResumeEvents,
  36.     reserved,
  37.     canBackground,
  38.     doesActivateOnFGSwitch,
  39.     backgroundAndForeground,
  40.     dontGetFrontClicks,
  41.     ignoreAppDiedEvents,
  42.     is32BitCompatible,
  43.     isHighLevelEventAware,
  44.     localAndRemoteHLEvents,
  45.     isStationeryAware,                
  46.     reserved,
  47.     reserved,
  48.     reserved,
  49.     reserved,
  50. #if qDebug
  51.     2500 * 1024,
  52. #else
  53.     2500 * 1024,
  54. #endif
  55.     1000 * 1024
  56. };
  57.  
  58. resource 'SIZE' (0) {
  59.     reserved,
  60.     acceptSuspendResumeEvents,
  61.     reserved,
  62.     canBackground,
  63.     doesActivateOnFGSwitch,
  64.     backgroundAndForeground,
  65.     dontGetFrontClicks,
  66.     ignoreAppDiedEvents,
  67.     is32BitCompatible,
  68.     isHighLevelEventAware,
  69.     localAndRemoteHLEvents,
  70.     isStationeryAware,                
  71.     reserved,
  72.     reserved,
  73.     reserved,
  74.     reserved,
  75. #if qDebug
  76.     2500 * 1024,
  77. #else
  78.     2500 * 1024,
  79. #endif
  80.     1000 * 1024
  81. };
  82.