home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DU Projects / Sample4 / Sources / Defines.k < prev    next >
Encoding:
Text File  |  1996-08-22  |  1.0 KB  |  30 lines  |  [TEXT/CWIE]

  1. //    Copyright:    © 1996 by Apple Computer, Inc., All rights reserved.
  2. //    Release Version:    $ ODF 2 $
  3.  
  4. #ifndef DEFINES_K
  5. #define DEFINES_K
  6.  
  7. // Uncomment the following three lines, and define them appropriately!!
  8. // If your part can be a container for other parts, define FW_SUPPORTS_EMBEDDING
  9. // to be 1.  Otherwise define it to be 0.
  10. // If your part defines any ODExtensions, define FW_SUPPORTS_EXTENSIONS to be
  11. // 1 to enable the extensions manager.  Otherwise, define it to be 0.
  12. // If your part is scriptable, define FW_SUPPORTS_SCRIPTING to be 1. Otherwise,
  13. // define it to be zero.  Note that if your part is scriptable is must support
  14. // extensions, so FW_SUPPORTS_EXTENSIONS must be defined to be 1.
  15.  
  16. #define FW_SUPPORTS_EMBEDDING 0
  17. #define FW_SUPPORTS_EXTENSIONS 0
  18. #define FW_SUPPORTS_SCRIPTING 0
  19.  
  20. //===================================================
  21. // PICT ID
  22. #define kODFpictResID      2000
  23. #define kPartIconID     128
  24. #define kAbout            1024
  25. #define kPartInfoID        1024
  26.  
  27. //===================================================
  28. #endif
  29.  
  30.