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 / Found / FWString / PRStrRep.h < prev    next >
Encoding:
Text File  |  1996-09-17  |  977 b   |  47 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                PRStrRep.h
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef PRSTRREP_H
  11. #define PRSTRREP_H
  12.  
  13. #ifndef FWODEXCE_H
  14. #include "FWODExce.h"
  15. #endif
  16.  
  17. #ifndef FWSTDDEF_H
  18. #include "FWStdDef.h"
  19. #endif
  20.  
  21. #ifndef SLSTRREP_H
  22. #include "SLStrRep.h"
  23. #endif
  24.  
  25. #ifndef SLTXTPAR_H
  26. #include "SLTxtPar.h"
  27. #endif
  28.  
  29. #ifndef FWODTYPS_H
  30. #include "FWODTyps.h"
  31. #endif
  32.  
  33. //========================================================================================
  34. //    STRUCT FW_SPrivStringRep
  35. //========================================================================================
  36.  
  37. struct FW_SPrivStringRep
  38. {
  39.     ODIText                fText;
  40.     FW_ODITextParams    fParams;
  41.     long                fRefCount;
  42.     FW_Boolean            fUsingStaticBuffer;
  43.     FW_Boolean            fLocked;
  44. };
  45.  
  46. #endif
  47.