* include/ntdll.h: New file.

* lib/ntdll.def: Add NtShutdownSystem.
This commit is contained in:
Egor Duda
2002-06-16 13:21:43 +00:00
parent 1464d11b4b
commit 45e9463a38
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#ifndef _NTDLL_H
#define _NTDLL_H
#if __GNUC__ >=3
#pragma GCC system_header
#endif
typedef enum _SHUTDOWN_ACTION {
ShutdownNoReboot,
ShutdownReboot,
ShutdownPowerOff
} SHUTDOWN_ACTION;
DWORD WINAPI NtShutdownSystem (SHUTDOWN_ACTION Action);
#endif /* _NTDLL_H */