home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Snippets / Dim Text 3.0 / ToolBoxInit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-17  |  331 b   |  21 lines  |  [TEXT/CWIE]

  1. #include <Fonts.h>
  2. #include <Events.h>
  3. #include <Dialogs.h>
  4. #include <Menus.h>
  5.  
  6. #include "ToolBoxInit.h"
  7.  
  8. #define    REMOVE_ALL_EVENTS    0
  9.  
  10. void ToolBoxInit( void )
  11. {
  12.     InitGraf( (Ptr)&qd.thePort );
  13.     InitFonts();
  14.     FlushEvents( everyEvent, REMOVE_ALL_EVENTS );
  15.     InitWindows();
  16.     InitMenus();
  17.     TEInit();
  18.     InitDialogs( 0 );
  19.     InitCursor();
  20. }
  21.