home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 15 / BBS in a box XV-2.iso / Files II / Prog / M / MacPerl 4.13 source.sit / Perl Source ƒ / MacPerl / MPPreferences.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-27  |  887 b   |  40 lines  |  [TEXT/MPS ]

  1. /*********************************************************************
  2. Project    :    MacPerl                -    Real Perl Application
  3. File        :    MPPreferences.h    -    Handle Preference Settings
  4. Author    :    Matthias Neeracher
  5.  
  6. A lot of this code is borrowed from 7Edit written by
  7. Apple Developer Support UK
  8.  
  9. Language    :    MPW C
  10.  
  11. $Log: MPPreferences.h,v $
  12. Revision 1.1  1994/02/27  23:03:58  neeri
  13. Initial revision
  14.  
  15. *********************************************************************/
  16.  
  17. #ifndef __MPPREFERENCES__
  18. #define __MPPREFERENCES__
  19.  
  20. #include <Types.h>
  21. #include <QuickDraw.h>
  22. #include <Packages.h>
  23. #include <GestaltEqu.h>
  24. #include <Editions.h>
  25. #include <Printing.h>
  26.  
  27. #ifndef __MPGLOBALS__
  28. #include "MPGlobals.h"
  29. #endif
  30.  
  31. pascal void OpenPreferenceFile(FSSpec * spec);
  32.  
  33. pascal void OpenPreferences();
  34.  
  35. pascal void DoPrefDialog();
  36.  
  37. pascal Boolean DoFormatDialog(DocFormat * format, Boolean * defaultFormat);
  38.  
  39. #endif
  40.