Windows驱动1. Hello World

Hello World 首个程序

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <ntddk.h>  // 驱动头

// 驱动卸载函数
VOID DriverUnload(PDRIVER_OBJECT pDriverObject)
{
KdPrint(("Driver Unload\n"));
}

// 驱动入口函数
NTSTATUS DriverEntry(IN PDRIVER_OBJECT pDriverObject, IN PUNICODE_STRING pRegistryPath)
{
// 设置卸载函数
pDriverObject->DriverUnload = DriverUnload;
KdPrint(("Driver Entry\n"));
return STATUS_SUCCESS;
}

Windows驱动1. Hello World
https://simonkimi.githubio.io/2024/07/31/Windows驱动1-Hello-World/
作者
simonkimi
发布于
2024年7月31日
许可协议