当前位置:
首页 资源下载
搜索资源 - driver DeviceIocontrol
搜索资源列表
-
0下载:
CharSample实例的功能是:应用程序从键盘接收一个数字,之后通过DeviceIoControl调用,把数字传递给驱动程序,由驱动程序将一个数字(0-9)转换成一个中文(零-九),再把结果返回给应用程序,由应用程序显示出来。-CharSample examples of functions are : applications from the keyboard to receive a number, followed by DeviceIoControl call, this time
-
-
0下载:
该代码为我学习winnt内核时所写,主要功能是在ring3下通过DeviceIoControl与驱动进行通信,获取内核的数据以及sdt,idt信息等。并实现了hook NtQuerySystemInformation函数来实现进程隐藏的功能-The code for the kernel, I am learning winnt wrote, Its main function is in ring3 through DeviceIoControl communication with the
-
-
0下载:
//打开 USB 口读写, 由驱动程序的 Pipe 名确定
HANDLE hPipe = OpenMyDevPipe(\"MyPipe1\") //驱动程序里面的 Pipe 名, 对应访问某个端点的 I/O, 这里我乱写的, 需要与驱动一致
if(hPipe != INVALID_HANDLE_VALUE) //打开 Pipe 成功
{
ReadFile(hPipe, Buffer, BufSize, &nBytesRead, NULL) //从 hPipe 里读取数
-
-
0下载:
用DeviceIoControl访问物理端口的驱动程序-DeviceIoControl visit with the physical ports Driver
-
-
0下载:
DeviceIoControl实例及文档,通过API访问设备驱动程序-DeviceIoControl examples and documentation, through the API to access device driver
-
-
0下载:
wince 6.0 下实现的ADC的驱动程序、应用程序源代码。s3c6410 ,C++ 。我的触摸屏是一线触摸屏。板子上的电位器独立占用通道0 。应用程序通过DeviceIoControl,读到AD的数值,然后显示在EDIT 控件中。定时器80毫秒刷新一次。-wince 6.0 to achieve the ADC driver application source code. s3c6410, C++. My touch screen is touch-screen line. Applica
-
-
0下载:
驱动程序函数DEVICEIOCONTROL的详细说明-driver function DEVICEIOCONTROL details
-
-
0下载:
测试USB驱动程序的应用程序代码,用来实现VendorRequest。使用了DeviceIoControl-USB driver test application code, used to achieve VendorRequest. Using DeviceIoControl
-
-
0下载:
CPU降温程序,用DDK+SDK开发的。加载驱动无须管理员权限,用DeviceIoControl与驱动交互。-CPU cooling procedures, with DDK SDK development. Drivers do not have administrator privileges to load and use DeviceIoControl interaction with the driver.
-
-
0下载:
Windows Vista操作系统下, visual studio 2008开发环境,通过DeviceIoControl读取硬盘物理参数,包括厂家、序列号等-diskid32, update to windows vista, with visual studio 2008, read the hardware parameter of disk driver.
-
-
0下载:
Device Driver Program for begginer. using DeviceIOcontrol funtion in driver Device Driver Program for begginer. using DeviceIOcontrol funtion in driver-Device Driver Program for begginer. using DeviceIOcontrol funtion in driver Device Driver Program
-
-
0下载:
生成与硬件相关的注册码。控制软件不重复使用!那么,很多多人认为VB实现不了。自然没有找到方法,一定是实现不了。然而,感谢WWW,我们能在上面找到VC的源码,DELPHI的源码。但是VB的就是见不到。为此,我决定将VC的源码改成VB的,以下即是:
VC原作说明部分(再发行时,请注意采用注解的方式,请不要删除的方式侵权,谢谢!)
*************************************************************************
-
-
0下载:
实战DeviceIoControl :通过API访问设备驱动程序 -Combat DeviceIoControl: API access through the device driver
-
-
0下载:
通常情况下,我们通过=&HEC命令对IDE端口进行监测.获取硬盘信息.
一般情况下,我们就写个VXD或者DRIVER来完成.但是现在,通过MS的S.M.A.R.T.接口,
我们可以直接从RING3调用API DeviceIoControl()来获取硬盘信息.-Under normal circumstances, we pass = & HEC command IDE port monitoring. Acquire the hard disk information.
-