home *** CD-ROM | disk | FTP | other *** search
/ Chip: Special Computer Graphics & Animation / Chip-Special-Computergrafik.bin / programs / povray / povsrc.sea / POVSRC / SOURCE / POV-Ray.r < prev    next >
Text File  |  1993-11-30  |  4KB  |  103 lines

  1. /*
  2. ==============================================================================
  3. Project:    POV-Ray
  4.  
  5. Version:    2.0
  6.  
  7. File Name:    POV-Ray.r
  8.  
  9. Description:
  10.     MPW Rez sourcefile.
  11.     This is currently here just to load the precompiled resources
  12.     into the application.
  13.  
  14. Related Files:
  15.     Pov.c: Main program file
  16.     POV.╣.rsrc: What rsrcs get appended
  17.     POV-Ray.make: Who makes me
  18. ------------------------------------------------------------------------------
  19. Author:
  20.     Eduard [esp] Schwan
  21. ------------------------------------------------------------------------------
  22.     from Persistence of Vision Raytracer
  23.     Copyright 1993 Persistence of Vision Team
  24. ------------------------------------------------------------------------------
  25.     NOTICE: This source code file is provided so that users may experiment
  26.     with enhancements to POV-Ray and to port the software to platforms other 
  27.     than those supported by the POV-Ray Team.  There are strict rules under
  28.     which you are permitted to use this file.  The rules are in the file
  29.     named POVLEGAL.DOC which should be distributed with this file. If 
  30.     POVLEGAL.DOC is not available or for more info please contact the POV-Ray
  31.     Team Coordinator by leaving a message in CompuServe's Graphics Developer's
  32.     Forum.  The latest version of POV-Ray may be found there as well.
  33.  
  34.     This program is based on the popular DKB raytracer version 2.12.
  35.     DKBTrace was originally written by David K. Buck.
  36.     DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
  37. ------------------------------------------------------------------------------
  38. More Info:
  39.     This Macintosh version of POV-Ray was created and compiled by Jim Nitchals
  40.     (Think 5.0) and Eduard Schwan (MPW 3.2), based (loosely) on the original
  41.     port by Thomas Okken and David Lichtman, with some help from Glenn Sugden.
  42.  
  43.     For bug reports regarding the Macintosh version, you should contact:
  44.     Eduard [esp] Schwan
  45.         CompuServe: 71513,2161
  46.         Internet: jl.mactech@applelink.apple.com
  47.         AppleLink: JL.MacTech
  48.     Jim Nitchals
  49.         Compuserve: 73117,3020
  50.         America Online: JIMN8
  51.         Internet: jimn8@aol.com -or- jimn8@applelink.apple.com
  52.         AppleLink: JIMN8
  53. ------------------------------------------------------------------------------
  54. Change History:
  55.     920308    [esp]    Created.
  56.     920415    [esp]    Added QuickTime SC stuff
  57.     920429    [esp]    Removed QuickTime SC stuff and updated header comment refs
  58.     920825    [esp]    Updated SIZE flag names for MPW 3.2.3 compatibility
  59.     930817    [esp]    Updated App mem size from 2350 to 2500 since max_syms went to 1000
  60.     930829    [esp]    Added the split resource files included
  61.     931001    [esp]    version 2.0 finished (Released on 10/4/93)
  62. ==============================================================================
  63. */
  64.  
  65. // Standard Type Definitions
  66.  
  67. #include "Types.r"
  68. #include "SysTypes.r"
  69.  
  70.  
  71. // Include application resources
  72. // (and NOT the Source Code Mgr (Projector) check ID!)
  73. // Main resources
  74. include "POV.╣.rsrc" not 'ckid';
  75.  
  76. // Balloon help resources
  77. // #ifdef DO_BALLOON_HELP
  78. // include "POVHelp.rsrc" not 'ckid';
  79.  
  80. // Generated automagically in Think C, so must hide here in MPW C!
  81. resource 'SIZE' (-1, purgeable)
  82. {
  83.     reserved,
  84.     acceptSuspendResumeEvents,    // ignoreSuspendResumeEvents
  85.     reserved,
  86.     canBackground,                // cannotBackground
  87.     doesActivateOnFGSwitch,        // needsActivateOnFGSwitch
  88.     backgroundAndForeground,    // onlyBackground
  89.     dontGetFrontClicks,            // getFrontClicks
  90.     ignoreAppDiedEvents,        // acceptAppDiedEvents
  91.     is32BitCompatible,            // not32BitCompatible
  92.     isHighLevelEventAware,        // notHighLevelEventAware
  93.     localAndRemoteHLEvents,        // onlyLocalHLEvents
  94.     notStationeryAware,            // isStationeryAware
  95.     dontUseTextEditServices,    // useTextEditServices
  96.     reserved,
  97.     reserved,
  98.     reserved,
  99.     2500*1024,                    // preferred mem size (Bytes)
  100.     1000*1024                    // minimum mem size (Bytes)
  101. };
  102.  
  103.