在向导自动生成的测试文件里,在开头有这么一段话:This console application demonstrates how to open a handle to a device in your driver, and communicate with the driv...
全文
回复(7) 2003-10-15 21:49 来自版块 - 非USB硬件驱动开发
表情
afsim[quote]DeviceIoControl一般用来小量数据传输,不过如果只是读和写的话,是可以满足的 为什么DeviceIoControl 一般用来传小量数据呢。 [/quote] 应该用readfile/writefile做异步读写。(2003-10-28 20:46)
stephen80320谢谢上面的几位,分数已加(2003-10-16 12:51)
CYoung肯定可以的,试下(2003-10-16 11:34)
stephen80320DeviceIoControl一般用来小量数据传输,不过如果只是读和写的话,是可以满足的 我仅仅只要读和写,不过数据很多(几G的数据),用DeviceIoControl是否可以? (2003-10-16 11:24)
lioniamheroDeviceIoControl一般用来小量数据传输,不过如果只是读和写的话,是可以满足的 为什么DeviceIoControl 一般用来传小量数据呢。(2003-10-16 01:30)
CYoungDeviceIoControl一般用来小量数据传输,不过如果只是读和写的话,是可以满足的(2003-10-15 22:27)
superrobust当然可以了。 Deviceiocontrol的作用包括了readfile和writefile。 如果你的驱动里面定义了Devicecontrol就可以在应用程序里 调用。(2003-10-15 22:25)

返回顶部