home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / macify13.shr / macify.hqx / Source / U / InitExitMacify.c < prev    next >
Text File  |  1991-03-15  |  2KB  |  47 lines

  1. /*   InitExitMacify                                                          Program Init and Exit routines 
  2.  
  3. File name:  InitExitMacify.c  
  4. Function:  This module contains the extra program initialization
  5.      routine as well as the program exit and cleanup routine.
  6. /* History: 3/15/91 Original by Prototyper 3.0   */
  7.  
  8.  
  9. #include "PCommonMacify.h"    /* Common */
  10. #include "Common_Macify.h"    /* Common */
  11. #include "PUtils_Macify.h"    /* General Utilities */
  12. #include "Utils_Macify.h"    /* General Utilities */
  13.  
  14. #include "InitExitMacify.h"    /* This file */
  15.  
  16.  
  17. /* ======================================================= */
  18.  
  19. /* Routine: ApplInit_Macify */
  20. /* Purpose: Extra program initialization. */
  21. /*     WNE: boolean, This variable set to TRUE says the WaitNextEvent trap is available,  */
  22. /*         If we want to use that trap then we do nothing to this variable.  If we do not  */
  23. /*         want to use that trap, and use GetNextEvent instead, then we change this  */
  24. /*         variable to FALSE.  */
  25. /*     SleepValue:integer, This is only valid if WNE is true.  This is the default sleep  */
  26. /*         value to use with WaitNextEvent, it is set to 40.  This can be changed to any  */
  27. /*         value desired at any time.  */
  28.  
  29. void ApplInit_Macify()                                                     /* Initialization */
  30. {
  31.  
  32. }
  33.  
  34. /* ======================================================= */
  35.  
  36. /* Routine: ApplExit_Macify */
  37. /* Purpose: Extra program cleanup upon exit from our program. */
  38. /*     This is where left over buffers are released and any open files are closed. */
  39.  
  40. void ApplExit_Macify()                                                     /* Exit and cleanup */
  41. {
  42.  
  43. }
  44.  
  45. /* ======================================================= */
  46.  
  47.