摘要: WDM 阅读全文
posted @ 2011-09-17 22:44 airzack 阅读(237) 评论(0) 推荐(0)
摘要: first.c 1 #pragma once 2 3 #ifdef __cplusplus 4 extern "C" { 5 #endif 6 7 #include <ntddk.h> 8 9 #ifdef __cplusplus10 }11 #endif12 13 DRIVER_INITIALIZE DriverEntry;14 DRIVER_UNLOAD DriverUnload;15 16 #pragma code_seg("INIT")17 EXTERN_C NTSTATUS DriverEntry( IN PDRIVER_OBJEC 阅读全文
posted @ 2011-09-17 22:18 airzack 阅读(165) 评论(0) 推荐(0)
摘要: 1 #include <windows.h> 2 #include <stdio.h> 3 4 int WINAPI WinMain( HINSTANCE hInstance, 5 HINSTANCE hPrevInstance, 6 LPSTR lpCmdLine, 7 int nShowCmd ) 8 { 9 LPSTR szString = "Windows data type, string.";10 CHAR lpString[120];11 DWORD dwMax = 0xFFFFF... 阅读全文
posted @ 2011-09-17 21:23 airzack 阅读(115) 评论(0) 推荐(0)