Ansi 与 Unicode 字符串初始化与打印
exchen 16年前 (2009-10-02) 2237浏览
/*Ansi与Unicode字符串初始化与打印 by exchen 2009-10-02 */ #include <ntddk.h> VOID DriverUnload( IN PD...
exchen's blog专注软件安全
exchen 16年前 (2009-10-02) 2237浏览
/*Ansi与Unicode字符串初始化与打印 by exchen 2009-10-02 */ #include <ntddk.h> VOID DriverUnload( IN PD...
exchen 16年前 (2009-10-02) 2269浏览
1) 直接打印字符串。 DbgPrint(“Hello World!”); 2) 空结尾的字符串,你可以用普通得C语法表示字符串常量 char variable_string[] = “Hello World”; DbgPrint(“%s”,vari...
exchen 16年前 (2009-10-02) 1835浏览
/*第一个驱动程序 by exchen 2009-10-02 */ #include <ntddk.h> VOID DriverUnload( IN PDRIVER_OBJECT Dr...