Steps To Write Device Driver In Windows Operating System
********* Steps To Write Device Driver In Windows Operating System ******** Step 1: First To install WDK(Window Driver Kit) in Our Computer. Step 2: Create a .c file which is use write a Device Driver program. Step 3: Write a Simple Device Driver Program. //////////////////////////////////////////////////////////////////////////////////////////////////// Program Name : First_Driver.c //////////////////////////////////////////////////////////////////////////////////////////////////// //Include header file. #include<wdm.h> // call DriverEntry Routine. NTSTATUS DriverEntry(PDRIVER_OBJECT pDrvObj, PUNICODE_STRING pRegPath) { // // Display The Message In Kernel Log // DbgPrint("Hello World \n"); return STATUS_SUCCESS; ...