我想写一个UMDF2
windows驱动,不知道从哪里看输出OutputDebugString
。
这是我的代码,类似于KMDF Hello World
.
#include <Windows.h>
#include <wdf.h>
NTSTATUS UmdfHelloWorldEvtDeviceAdd(_In_ WDFDRIVER Driver, _Inout_ PWDFDEVICE_INIT DeviceInit)
{
UNREFERENCED_PARAMETER(Driver);
NTSTATUS status;
WDFDEVICE hDevice;
OutputDebugString((LPCWSTR)"UmdfHelloWorld: EvtDeviceAdd\n");
status = WdfDeviceCreate(&DeviceInit, WDF_NO_OBJECT_ATTRIBUTES, &hDevice);
return status;
}
NTSTATUS DriverEntry(_In_ PDRIVER_OBJECT DriverObject, _In_ PUNICODE_STRING RegistryPath)
{
NTSTATUS status = STATUS_SUCCESS;
WDF_DRIVER_CONFIG config;
OutputDebugString((LPCWSTR)"UmdfHelloWorld: DriverEntry\n");
WDF_DRIVER_CONFIG_INIT(&config, UmdfHelloWorldEvtDeviceAdd);
status = WdfDriverCreate(DriverObject, RegistryPath, WDF_NO_OBJECT_ATTRIBUTES, &config, WDF_NO_HANDLE);
return status;
}
windbg
运行 KMDF Hello World 驱动程序在内核模式调试中成功给了我输出。但是,UMDF Hello World 驱动程序没有显示输出。
这就是我(卸载)安装驱动程序的方式:
devcon.exe install UmdfHelloWorld.inf Root\UmdfHelloWorld
devcon.exe remove Root\UmdfHelloWorld
另外,我想使用用户模式调试,但我不知道如何为 UMDF 驱动程序执行此操作。