Hi everyone,
i would like to ask some question. There is a code such as following and i want to read that driver's output through the user mode form application. Is there a code sample that you have ? (or console app)
thank you so much.
i would like to ask some question. There is a code such as following and i want to read that driver's output through the user mode form application. Is there a code sample that you have ? (or console app)
thank you so much.
Code: Select all
#include <ntddk.h>
NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
{
DbgPrint(“Hello World\n”);
return STATUS_SUCCESS;
}