You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
517 B
Markdown

This file contains ambiguous Unicode characters!

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);
```
### 函数指针类型
```c++
typedef DWORD(WINAPI* typeNtShutdownSystem)(SHUTDOWN_ACTION Action);
```
### 未导出类型
- SHUTDOWN_ACTION
```c++
typedef enum _SHUTDOWN_ACTION
{
ShutdownNoReboot,
ShutdownReboot,
ShutdownPowerOff
} SHUTDOWN_ACTION;
```
### 所在DLL
- ntdll.dll