This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# NTV04_NtShutdownSystem
NTAPI快速关闭计算机视频源代码,用于演示未公开的API - NtShutdownSystem
## 关于NtShutdownSystem
### 函数原型
```c++
DWORD NtShutdownSystem(SHUTDOWN_ACTION Action);
```
### 函数指针类型
typedef DWORD(WINAPI* typeNtShutdownSystem)(SHUTDOWN_ACTION Action);
### 未导出类型
- SHUTDOWN_ACTION
typedef enum _SHUTDOWN_ACTION
{
ShutdownNoReboot,
ShutdownReboot,
ShutdownPowerOff
} SHUTDOWN_ACTION;
### 所在DLL
- ntdll.dll