[Com0com-cvs] com0com/include cncext.h,1.1,1.2
The virtual serial port driver for Windows.
Brought to you by:
vfrolov
From: Vyacheslav F. <vf...@us...> - 2008-06-05 10:46:02
|
Update of /cvsroot/com0com/com0com/include In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv12632 Modified Files: cncext.h Log Message: Removed RCS keywords Index: cncext.h =================================================================== RCS file: /cvsroot/com0com/com0com/include/cncext.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** cncext.h 14 Mar 2008 15:28:39 -0000 1.1 --- cncext.h 5 Jun 2008 10:45:57 -0000 1.2 *************** *** 1,4 **** /* ! * $Id$ * * Copyright (c) 2008 Vyacheslav Frolov --- 1,4 ---- /* ! * cncext.h * * Copyright (c) 2008 Vyacheslav Frolov *************** *** 18,28 **** * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * - * $Log$ - * Revision 1.1 2008/03/14 15:28:39 vfrolov - * Implemented ability to get paired port settings with - * extended IOCTL_SERIAL_LSRMST_INSERT - * - * */ --- 18,21 ---- *************** *** 33,36 **** --- 26,34 ---- #define C0CE_SIGNATURE_SIZE (sizeof(UCHAR)*4) + /************************************************************************** + Extended IOCTL_SERIAL_LSRMST_INSERT allows to monitor and get the paired + port settings as insertion to the data stream + **************************************************************************/ + /* Following this value is the baud rate (ULONG) of paired port *************** *** 44,50 **** #define C0CE_INSERT_RLC 17 ! #define C0CE_INSERT_IOCTL_CAPS 0xFFFFFFFF /* IOCTL returns signature and all possible options */ ! #define C0CE_INSERT_IOCTL_GET 0x01000000 /* IOCTL returns current values */ #define C0CE_INSERT_IOCTL_RXCLEAR 0x02000000 /* IOCTL clears the driver's input buffer */ --- 42,52 ---- #define C0CE_INSERT_RLC 17 ! /* ! Options (ULONG) ! */ ! #define C0CE_INSERT_IOCTL_CAPS 0xFFFFFFFF /* IOCTL returns bitmap of all possible options */ ! ! #define C0CE_INSERT_IOCTL_GET 0x01000000 /* IOCTL returns current values of enabled insertions */ #define C0CE_INSERT_IOCTL_RXCLEAR 0x02000000 /* IOCTL clears the driver's input buffer */ |