Hi,

Can anyone suggest me on how to implement virtual serial port driver in
98SE? I heard about ccport.sys and found out in the news group that a
bit buggy. Is there anyother way to implement virtual serial port in
win98SE? I'm trying to WDM virtual serial port driver into 98SE.
Or should I write a new Vxd virtual serial port driver to interact with
WDM USB driver?

thank you very much,

Bandu

Re: How to Virtual Serial Port Driver in Win98SE? by Vijay

Vijay
Fri Feb 11 02:50:26 CST 2005

> Or should I write a new Vxd virtual serial port driver to interact with
> WDM USB driver?

Yes. Create Serial device Object within WDM driver and control this device
object by your Port driver (VxD).
Win 98 SE/ ME sends all serial requests to your port driver and your port
driver VxD redirects all these
requests to your WDM driver (which in turn converts the requests to URBs)...



"Bandu" <m.bandu@btopenworld.com> wrote in message
news:1108031260.148838.22020@c13g2000cwb.googlegroups.com...
> Hi,
>
> Can anyone suggest me on how to implement virtual serial port driver in
> 98SE? I heard about ccport.sys and found out in the news group that a
> bit buggy. Is there anyother way to implement virtual serial port in
> win98SE? I'm trying to WDM virtual serial port driver into 98SE.
> Or should I write a new Vxd virtual serial port driver to interact with
> WDM USB driver?
>
> thank you very much,
>
> Bandu
>



Re: How to Virtual Serial Port Driver in Win98SE? by Bandu

Bandu
Fri Mar 11 04:57:14 CST 2005

thanks Vijay.

Bandu