镜像自GitHub仓库
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.
 
 
UnknownObject 5f69305fc5
Update README.md
3 years ago
NTV_04_NtShutdownSystem Add files via upload 3 years ago
.gitignore Initial commit 3 years ago
LICENSE Initial commit 3 years ago
README.md Update README.md 3 years ago

README.md

NTV04_NtShutdownSystem

NTAPI快速关闭计算机视频源代码用于演示未公开的API - NtShutdownSystem

关于NtShutdownSystem

函数原型

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