mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
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 */
|