home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 May / macformat-024.iso / Shareware City / Developers / BoxMaker++ / BoxMaker++ ƒ / Sample Resources.r < prev   
Encoding:
C/C++ Source or Header  |  1995-01-20  |  666 b   |  32 lines  |  [TEXT/KAHL]

  1. #define SystemSevenOrLater 1
  2.  
  3. #include <Types.r>
  4.  
  5. #include "boxmaker templates.h"
  6. //
  7. // Include this if you want to limit the file types passed to your dropper:
  8. //
  9. resource 'typs' (128, Locked) {
  10.     {
  11.         'Test',
  12.         'This',
  13.         'That',
  14.         'More',
  15.         'Last'
  16.     }
  17. };
  18. //
  19. // 'EnterFolders', 'PassInvisibles', and 'EnterInvisibles'
  20. // will all be set to false if the 'flgs' resource is absent.
  21. //
  22. // the flag 'passFolders' is set by the constructor. It can
  23. // not be changed by messing around with the 'flgs' resource
  24. // because the 'OpenDoc' handler may get upset about that.
  25. //
  26. resource 'flgs' (128) {
  27.     EnterFolders,
  28.     dontPassFolders,
  29.     dontEnterInvisibles,
  30.     dontPassInvisibles
  31. };
  32.