home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / OS / FWOSMisc / Include / FWMacOS.h < prev    next >
Encoding:
Text File  |  1995-11-08  |  1.2 KB  |  39 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWMacOS.h
  4. //    Release Version:    $ 1.0d11 $
  5. //
  6. //    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWMACOS_H
  11. #define FWMACOS_H
  12.  
  13. #ifdef FW_BUILD_MAC
  14.  
  15. #if FW_LIB_EXPORT_PRAGMAS
  16. #pragma lib_export on
  17. #endif
  18.  
  19. //========================================================================================
  20. //    Forward Declarations
  21. //========================================================================================
  22.  
  23. struct FW_CLASS_ATTR FW_CRect;
  24.  
  25. //========================================================================================
  26. //    Global Mac Utility Functions
  27. //========================================================================================
  28.  
  29. FW_Boolean     FW_MacBuildWindowRegions(WindowPtr windowPtr, FW_Boolean build);
  30. GDHandle     FW_MacGetMaxIntersectedDevice(WindowPtr windowPtr, FW_CRect& screenRect);
  31. void         FW_MacZoomWindow(WindowPtr windowPtr, FW_Boolean zoomIn);
  32.  
  33. #if FW_LIB_EXPORT_PRAGMAS
  34. #pragma lib_export off
  35. #endif
  36.  
  37. #endif
  38.  
  39. #endif