home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Mecomp Multimedia 1
/
Mecomp-CD.iso
/
amiga
/
tools
/
system
/
shutdown
/
shutdown.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-04-10
|
212b
|
15 lines
#include "shutdownbase.h"
struct Library *ShutdownBase;
void
main()
{
if(ShutdownBase = (struct Library *)OpenLibrary("shutdown.library",2))
{
Shutdown(SHUTDOWN_NORMAL);
CloseLibrary(ShutdownBase);
}
}