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