home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / StartupTools / Shutdown2_0.lha / Shutdown.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-10  |  212 b   |  15 lines

  1. #include "shutdownbase.h"
  2.  
  3. struct Library *ShutdownBase;
  4.  
  5. void
  6. main()
  7. {
  8.     if(ShutdownBase = (struct Library *)OpenLibrary("shutdown.library",2))
  9.     {
  10.         Shutdown(SHUTDOWN_NORMAL);
  11.  
  12.         CloseLibrary(ShutdownBase);
  13.     }
  14. }
  15.