home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / visualj / vjtrial.exe / RCDATA / CABINET / mfcapwz.dll / TEMPLATE / ROOT.R < prev    next >
Text File  |  1997-01-28  |  2KB  |  123 lines

  1. //    $$r_file$$.r: Macintosh-specific resources
  2.  
  3. #include "types.r"
  4. $$IF(!PROJTYPE_DLL)
  5. #include "ftab.r"
  6. $$ENDIF //!PROJTYPE_DLL
  7. #include "CodeFrag.r"
  8. $$IF(!PROJTYPE_DLL)
  9.  
  10. resource 'SIZE' (-1)
  11. {
  12.     reserved,
  13.     acceptSuspendResumeEvents,
  14.     reserved,
  15.     canBackground,                
  16.     doesActivateOnFGSwitch,
  17.     backgroundAndForeground,    
  18.     dontGetFrontClicks,            
  19.     ignoreAppDiedEvents,        
  20.     is32BitCompatible,            
  21.     isHighLevelEventAware,
  22.     localAndRemoteHLEvents,
  23.     isStationeryAware,
  24.     useTextEditServices,
  25.     reserved,
  26.     reserved,
  27.     reserved,
  28.  
  29. // Set different sizes depending on whether we're compiling for
  30. //  PowerMacintosh or 68K
  31.  
  32. #ifdef _MPPC_
  33.  
  34. $$IF(CONTAINER || MINI_SERVER || FULL_SERVER || CONTAINER_SERVER || AUTOMATION)
  35.     3000 * 1024,
  36.     3000 * 1024
  37. $$ELSE //(NO OLE)
  38.     2500 * 1024,
  39.     2500 * 1024
  40. $$ENDIF //OLE
  41.  
  42. #else //!_MPPC_
  43.  
  44. #ifdef _DEBUG
  45.     3000 * 1024,
  46.     3000 * 1024
  47. #else
  48.     2000 * 1024,
  49.     2000 * 1024
  50. #endif //DEBUG
  51.  
  52. #endif //_MPPC
  53.  
  54. };
  55.  
  56. resource 'BNDL' (128, purgeable)    // $$root$$ bundle resource ID
  57. {
  58.     '$$CREATOR$$',            // $$root$$ signature
  59.     0,                        // resource ID of signature resource:
  60.                             // should be 0
  61.      {
  62.         'ICN#',                // mapping local IDs in 'FREF's to 'ICN#' IDs
  63.         {
  64.             0, 128,
  65.             1, 129
  66.         },
  67.         'FREF',                // local resource IDs for 'FREF's
  68.         {
  69.             0, 128,
  70.             1, 129
  71.         }
  72.     }
  73. };
  74.  
  75. resource 'FREF' (128, purgeable)    // $$root$$ application
  76. {
  77.     'APPL', 0,
  78.     ""
  79. };
  80.  
  81. resource 'FREF' (129, purgeable)    // $$root$$ document
  82. {
  83.     '$$FILE_TYPE$$', 1,
  84.     ""
  85. };
  86.  
  87. type '$$CREATOR$$' as 'STR ';
  88.  
  89. resource '$$CREATOR$$' (0, purgeable)
  90. {
  91.     "$$root$$ Application"
  92. };
  93. $$ENDIF //PROJTYPE_DLL
  94.  
  95. #ifdef _MPPC_
  96.  
  97. resource 'cfrg' (0)
  98. {
  99.     {
  100.         kPowerPC,
  101.         kFullLib,
  102.         kNoVersionNum,
  103.         kNoVersionNum,
  104.         kDefaultStackSize,
  105.         kNoAppSubFolder,
  106. $$IF(PROJTYPE_DLL)
  107.         kIsLib,
  108. $$ELSE //!DLL
  109.         kIsApp,
  110. $$ENDIF //PROJTYPE_DLL
  111.         kOnDiskFlat,
  112.         kZeroOffset,
  113.         kWholeFork,
  114. $$IF(PROJTYPE_DLL)
  115.         "$$ROOT$$"
  116. $$ELSE //!PROJTYPE_DLL
  117.         "$$root$$"
  118. $$ENDIF //PROJTYPE_DLL
  119.     }
  120. };
  121.  
  122. #endif //_MPPC_
  123.