extern “C”{ #include “wdm.h” }
extern "C"
NTSTATUS DriverEntry(INPDRIVER_OBJECT DriverObject,
IN PUNICODE_STRING RegistryPath)
{
NTSTATUS status =
STATUS_DEVICE_CONFIGURATION_ERROR;
KdPrint(("Hellow World!!!!"));
return status;
}