home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 1 / Mecomp-CD.iso / amiga / tools / system / shutdown / shutdown.c < prev    next >
C/C++ Source or Header  |  1992-04-10  |  212b  |  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.