home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Add-Ons / MPW / MPW cawf 4.0.9 / macish.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-01  |  294 b   |  18 lines  |  [TEXT/KAHL]

  1. /*
  2.  * macish.c - Macintosh intialization by Matthias Ulrich Neeracher
  3.  *          <neeri@iis.ee.ethz.ch>
  4.  */
  5.  
  6. #if    defined(macintosh)
  7. #include <QuickDraw.h>
  8.  
  9. /*
  10.  * InitToolbox() - initialize the Macintosh tool box
  11.  */
  12.  
  13. void InitToolbox()
  14. {
  15.     InitGraf(&qd.thePort);
  16. }
  17. #endif    /* defined(macintosh) */
  18.