home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Draw / compatibility.h < prev    next >
C/C++ Source or Header  |  1996-01-24  |  533b  |  27 lines

  1. #ifdef WIN32
  2. #define OBJECT_LINKS_BROKEN
  3. #endif
  4.  
  5. /*
  6.  * This first one is only used by compatibility.m and gvPasteboard.m.
  7.  * It will not be required once gvPasteboard.m is changed to use
  8.  * property lists as Draw's new pasteboard format.
  9.  */
  10.  
  11. @interface NSMutableArray(Compatibility)
  12.  
  13. - (id)initFromList:(id)aList;
  14.  
  15. @end
  16.  
  17. /* These are used to read old files. */
  18.  
  19. #define FIRST_OPENSTEP_VERSION 300
  20.  
  21. @interface DrawDocument(FileCompatibility)
  22.  
  23. + (BOOL)isPreOpenStepFile:(NSString *)file;
  24. + openPreOpenStepFile:(NSString *)file;
  25.  
  26. @end
  27.