home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 January / macformat-020.iso / Shareware City / Developers / apps.to.go / DTS.Draw / DTS.Draw.r < prev    next >
Encoding:
Text File  |  1994-05-05  |  1.0 KB  |  33 lines  |  [TEXT/MPS ]

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    Apple Macintosh Developer Technical Support
  4. #
  5. ------------------------------------------------------------------------------*/
  6.  
  7. #include "Types.r"
  8. #include "SysTypes.r"
  9.  
  10. include "DTS.Draw.π.rsrc";
  11.  
  12. resource 'SIZE' (-1) {
  13.     dontSaveScreen,
  14.     acceptSuspendResumeEvents,
  15.     enableOptionSwitch,
  16.     canBackground,                /* Can properly use background null events    */
  17.     doesActivateOnFGSwitch,        /* We do our own activate/deactivate; don't fake us out */
  18.     backgroundAndForeground,    /* This is definitely not a background-only application! */
  19.     dontGetFrontClicks,            /* Change this is if you want "do first click" behavior like the Finder */
  20.     ignoreAppDiedEvents,        /* Essentially, I'm not a debugger (sub-launching) */
  21.     is32BitCompatible,            /* This app can be run in 32-bit address space */
  22.     isHighLevelEventAware,        /* does Post/AcceptHighLevelEvent */
  23.     localAndRemoteHLEvents,
  24.     notStationeryAware,
  25.     dontUseTextEditServices,
  26.     reserved,
  27.     reserved,
  28.     reserved,
  29.     1500 * 1024,
  30.     1500 * 1024
  31. };
  32.  
  33.