
win32 driver
文章平均质量分 75
felixz
这个作者很懒,什么都没留下…
展开
-
How to load our device drivers 如何装载我们的设备驱动
安装驱动有很多种方法 INF/ 直接写注册表,也可以直接自己编写装载程序来完成这里有一个装载驱动的类,使用非常方便。IntroductionWhen you develop device drivers you always need to make two projects: first, the device driver and second the application to原创 2006-05-18 10:12:00 · 1565 阅读 · 0 评论 -
核心驱动文件操作 How to access file in Kernel Driver
核心驱动的文件操作主要有以下一个函数NTSTATUS ZwCreateFile( OUT PHANDLE FileHandle, IN ACCESS_MASK DesiredAccess, IN POBJECT_ATTRIBUTES ObjectAttributes, OUT PIO_STATUS_BLOCK IoStatusBlock, IN PLARGE_INTEGER A原创 2006-05-18 13:51:00 · 3808 阅读 · 1 评论 -
用VC++ 6.0来编译WDM驱动
作者:Arthur Tu2003年9月28日星期日标题:用VC++ 6.0来编译WDM驱动(限于2K DDK)Version 1.02如果转贴,务必加上以下内容:***************************************作者:Arthur Tu出处:驱动开发网 www.driverdevelop.com**************************************转载 2006-05-22 16:01:00 · 1320 阅读 · 0 评论 -
CreateProcess in KernelMode!
Showtime : *WORKING* CreateProcess in KernelMode! By: valerino I dont think this code needs any comment. Say welcome to usermode calls in kernel land..... with this technique you can even call Me转载 2006-07-04 10:58:00 · 1485 阅读 · 0 评论 -
Windows Vista TCP/IP半开连接限制补丁
下载页面 http://www.softpedia.com/progDownload/TCP-IP-Limit-AutoPatch-Download-72536.htmlAs you may have noticed Microsoft still limits your half-open (incomplete/syn packets) connection attempts per原创 2007-05-11 09:19:00 · 5578 阅读 · 0 评论 -
直接从CMOS读取系统时间
following code come from Linux Kernel 0.01#define CMOS_READ(addr) ({ /outb_p(0x80|addr,0x70); /inb_p(0x71); /})#define BCD_TO_BIN(val) ((val)=((val)&15) + ((val)>>4)*10)static void time_init(void){原创 2007-06-19 16:35:00 · 3553 阅读 · 0 评论