mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
b819608ed8
svn path=/branches/condrv_restructure/; revision=63104
12 lines
233 B
C
12 lines
233 B
C
#ifndef _NTDLL_H
|
|
#define _NTDLL_H
|
|
|
|
typedef enum _SHUTDOWN_ACTION {
|
|
ShutdownNoReboot,
|
|
ShutdownReboot,
|
|
ShutdownPowerOff
|
|
} SHUTDOWN_ACTION;
|
|
|
|
DWORD WINAPI NtShutdownSystem (SHUTDOWN_ACTION Action);
|
|
|
|
#endif /* _NTDLL_H */
|