c++winapidevice-driver

Create Virtual com port


I have to create virtual com port,by which I can communicate with other com port on machine,It is a part of device driver development?or simply we can write in c++.

Anyone can help me on this Thanks in advance.


Solution

  • You'll have to write a driver, so you'll need to install the WDK (previously called DDK). But you're lucky, because the Windows Driver Kit Samples Pack contains a Virtual Serial port samples.

    It seems that you want a 'translater' to talk with a device, why not simply write a filter driver and implement some additional IOControls?

    If you really want to access an other port from within your driver (which I already did once), you should look up following functions:

    Structures/IOCTL's you'll need:

    A complete overview of control requests can be found here