home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / Credits Library 1.0 / Credits Test / CreditsTest.c next >
Encoding:
C/C++ Source or Header  |  1994-04-11  |  1.8 KB  |  63 lines  |  [TEXT/KAHL]

  1. /*******************************************************
  2.  *                                                     *
  3.  *                     Credits                         *
  4.  *                                                     *
  5.  *        by Bill Hayden & Nikol Software, © 1994         *  
  6.  *                                                     *
  7.  *                                                        *
  8.  *                                                     *
  9.  *      Requires System 7 and 256 colors to run        *
  10.  *                                                     *
  11.  *      Thank you for supporting Nikol Software        *
  12.  *                                                     *
  13.  *                                                     *
  14.  *     Orders, support, inquiries, suggestions to:     *
  15.  *                                                     *
  16.  *                   Bill Hayden                       *
  17.  *                c/o Nikol Software                   *
  18.  *                924 Gondolier Blvd.                  *
  19.  *            Gulf Breeze, FL  32561-3018              *
  20.  *                                                       *
  21.  ******************************************************/
  22.  
  23.  
  24.  
  25. #include "Credits.h"
  26.  
  27.  
  28. /**********************************************************************************/
  29. /*                                .function prototypes                                */
  30. /**********************************************************************************/
  31.  
  32. void    ToolBoxInit (void);
  33.  
  34.  
  35. /**********************************************************************************/
  36.  
  37.  
  38. void ToolBoxInit (void)
  39. {
  40.     MaxApplZone();
  41.     MoreMasters();
  42.     InitGraf( &thePort);
  43.     InitFonts();
  44.     InitWindows();
  45.     InitMenus();
  46.     TEInit();
  47.     InitDialogs( nil);
  48.     InitCursor();
  49.     FlushEvents(everyEvent, 0);
  50. }
  51.  
  52.  
  53.  
  54. /**********************************************************************************/
  55.  
  56.  
  57. main ()
  58. {    
  59.     ToolBoxInit();
  60.     if (!ShowCredits(128, 1973, 1, kNone, 2, TRUE))
  61.         SysBeep(10);
  62. }
  63.