搜索资源列表
20020405
- 本文分三部分来介绍如何构造一个简单的USB过滤驱动程序,包括“基本原理”、“程序的 实现”、“使用INF安装”。此文的目的在于希望读者了解基本原理后,可以使用除DDK以 外最流行也最方便的驱动开发工具DriverStudio来实现一个自己的过滤驱动,并正确地安 装。 -how to structure a simple USB filter driver, "basic principles", "Implementation of procedures
filter
- USB 过滤驱动程序,可以任意修改USB输入设备的功能
Usb-Security
- File system filter driver
usbfilt.zip
- 一个简单的上层USB过滤驱动,在此基础上可以实现U盘只读,只写,加解密等功能。,a simple usb filter driver. you can implement read-only,write-only, encryptand uncrypt function based on this project
usbfilter
- USB过滤驱动程序框架,用DriverWorks生成的源码。-USB filter driver framework, the source code used to generate DriverWorks.
UsbFilter
- USB filter driver sample
PS_2USB
- 实现一个 PS/2 与 USB 键盘过滤驱动,兼容所有 NT 系列的操作系统。-Implementation of a PS/2 and USB keyboard filter driver, compatible with all NT series of operating systems.
FilterDriveronFSDanditsApplications
- 实现对文件系统访问的完全控制只有通过过滤驱动技术。介绍了Windows NT 文件系统驱动和过滤驱动原理、过滤驱动的几种用途以及如何加载一个过滤驱动,设计并实现了一个控制USB 设备的过滤驱动实例。 -Theory of File system driver filter and a application for controlling USB device.
Windows_2000_XP_WDM_Driver_Development
- 本书主要介绍了用DriverStudio 3.1开发工具开发Windows 2000/XP下的WDM设备驱动程序的原理及编程方法。本书详细介绍了WDM基本程序框架和编程,IRP的基本概念及编程,WDM和应用程序之间的通信、即插即用、电源管理、WMI的编程技术,IRP串行处理、过滤器驱动程序,WDM访问硬件设备、处理硬件中断、实现DMA操作的编程技术,以及大量的基本编程技术,还有USB接口和PCI接口设备驱动程序WDM的开发。 本书附有20个典型的编程实例,便于读者学习和掌握。 本书是一本
filter-driver-of-usb-disk
- filter driver of usb disk
SYS
- KEYBOARD filter sys & installer based on cap2ctrl.-KEYBOARD filter & installer based on cap2ctrl.
filter
- 一个不错的usb的过滤驱动程序,对于初学者是个不错的例子-A good usb filter drivers for beginners is a good example
FiltUSB
- USB过滤驱动,精简版,过滤U盘实现各种U盘驱动的过滤和作用的改善-USB filter driver, concise edition, filter U plate implementation of U disk drive filter and the improvement of the role
usb-stor-filter
- 一个简单的U盘过滤驱动程序,使U盘变成一个只读存储器。针对本机当前用户对U盘进行读写控制。可以令U盘处于只读状态。监控用户对文件系统的操作。-A simple U disk filter driver U disk into a read-only memory. U disk read and write control for the current user of the machine. U disk is read-only status. Monitoring of user ope
906840530USBfilter
- 简单地实现优盘过滤,使用C++实现,能够过滤U盘中的文件-The simple USB filter use C++ implementation, able to filter U disk file
usb-filter
- 可以过滤usb设备的IO操作,本代码有一个基本的usb管理的框架,用户可以直接在这个框架上进行进一步的开发。-A usb filter framework that can filter the IO of usb devices.
USB
- usb驱动常用知识、技能总结,并附上了USB2.0文档,便于查看。详细举例、分析了USB鼠标过滤驱动的实现方式。-usb drive common knowledge, skills summary, along with a USB2.0 documents for easy viewing. Details For example, analysis of the USB mouse filter driver implementation.
cxnet
- The entire training process BP neural network, The final weight matrix is ??the filter coefficient, Related impulse response analysis algorithm and inspection.
8549057USBFilter1
- usb过滤驱动WDM(和KDM)是分层的,在构造设备栈时,IO管理器可以使一个设备对象附加到另外一个初始驱动程序创建的设备对象上。与初始设备对象相关的驱动程序决定的IRP,也将被发送到附加的设备对象相关的驱动程序上。这个被附加的驱动程序便是过滤驱动程序。过滤驱动可以在设备栈的任何层次中插入。IO管理器发出的IRP将会沿着右图的顺序从上往下传递并返回。因此,我们可以使用过滤驱动程序来检查、修改、完成它接收到的IRP,或者构造自己的IRP。(The USB filter driver WDM (an