home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWPart / Include / FWEmbUtl.h < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.4 KB  |  48 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWEmbUtl.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWEMBUTL_H
  11. #define FWEMBUTL_H
  12.  
  13. #ifndef FWPRTDEF_H
  14. #include "FWPrtDef.h"
  15. #endif
  16.  
  17. //========================================================================================
  18. //    Forward Declarations
  19. //========================================================================================
  20.  
  21. class ODSession;
  22. class ODContainer;
  23. class FW_CEmbeddingFrame;
  24. class FW_PFileSpecification;
  25.  
  26. //========================================================================================
  27. //    Global Methods
  28. //========================================================================================
  29.  
  30. ODContainer*             FW_AcquireFileContainer(Environment* ev, 
  31.                                         ODSession* session, 
  32.                                         const FW_PFileSpecification& fileSpec);
  33.                                         
  34. FW_EInternalizeResult     FW_InsertPartFromFile(Environment* ev, 
  35.                                         FW_CEmbeddingFrame* frame, 
  36.                                         const FW_PFileSpecification& fileSpec);
  37.  
  38. ODPart*                 FW_ClonePartFromFile(Environment* ev, 
  39.                                         FW_CEmbeddingFrame* scopeFrame, 
  40.                                         const FW_PFileSpecification& fileSpec);
  41.  
  42. #ifdef FW_BUILD_MAC
  43. pascal Boolean            FW_MacInsertFilterProc(CInfoPBPtr pb);
  44. #endif
  45.  
  46. #endif
  47.  
  48.