mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 09:07:54 +00:00
13 lines
233 B
C
13 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 */
|