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 / ODFDev / ODF / Internet / SLCyUtil.h < prev   
Encoding:
Text File  |  1996-09-17  |  1.4 KB  |  66 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                SLCyUtil.h
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //    Cyberdog Utilities
  9. //    
  10. //========================================================================================
  11.  
  12. #ifndef SLCYUTIL_H
  13. #define SLCYUTIL_H
  14.  
  15. //-----------------------------------------------------------------------------
  16. // Includes and Forwards
  17. //-----------------------------------------------------------------------------
  18.  
  19. #ifndef FWSTDDEF_H
  20. #include "FWStdDef.h"
  21. #endif
  22.  
  23. class CyberItem;
  24. class FW_OSink;
  25. class CyberSession;
  26.  
  27. //-----------------------------------------------------------------------------
  28. // Cyberdog Utilities
  29. //-----------------------------------------------------------------------------
  30.  
  31. //
  32. // Glue
  33. //
  34.  
  35. FW_EXTERN_C_BEGIN
  36.  
  37. //#if defined(FW_ODFLIB_IMPORT)
  38. //#pragma import on
  39. //#elif defined(FW_ODFLIB)
  40. //#pragma export on
  41. //#endif
  42.  
  43. //
  44. // Cyberdog Utilities
  45. //
  46.  
  47. FW_Boolean     FW_CyberdogIsInstalled (Environment* ev);
  48.     
  49. void         FW_WriteCyberItem (Environment* ev, CyberItem* ci, FW_OSink* sink);
  50. CyberItem*     FW_ReadCyberItem (Environment* ev, CyberSession* session, FW_OSink* sink);
  51.  
  52. //
  53. // Glue
  54. //
  55.  
  56. //#if defined(FW_ODFLIB_IMPORT)
  57. //#pragma import off
  58. //#elif defined(FW_ODFLIB)
  59. //#pragma export off
  60. //#endif
  61.  
  62. FW_EXTERN_C_END
  63.  
  64. #endif // SLCYUTIL_H
  65.  
  66.