4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-15 02:09:19 +08:00
Egor Duda 45e9463a38 * include/ntdll.h: New file.
* lib/ntdll.def: Add NtShutdownSystem.
2002-06-16 13:21:43 +00:00

16 lines
283 B
C

#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 */