本文介绍了如何用usb设备将我的句柄绑定到管道?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好所有

我使用Create file,Writefile,Readfile与usb设备通信,成功使用Createfile后Writefile需要管道到设备。我试过Createpipe()来创建任何管道和我用带有refrence的Createfile句柄绑定了他的句柄。但它没有用。所以如何将我的Createfile句柄绑定到这个管道或如何使用Createnamedpipe来解决我的问题?

Ps如何制作正确的pipename来自usbpath我有哪些?



我尝试过:



Hanle * g,* f;

句柄h;

h = Createfile(...)

g =& h;

Createpipe(f,g,..)

解决方案


Hallo All
I use Create file ,Writefile,Readfile to communicate with a usb device,After using Createfile successfully Writefile needs a pipe to the device .I tried Createpipe() to create anynoumous pipe and I binded his handle with Createfile handle with refrence.but it did not work.So How to bind my Createfile handle to this pipe or How to use Createnamedpipe to solve my problem?
P.s How to make right pipename from usbpath which I have ?

What I have tried:

Hanle *g,*f;
Handle h;
h=Createfile(...)
g=&h;
Createpipe(f,g,..)

解决方案


这篇关于如何用usb设备将我的句柄绑定到管道?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 02:15