[Com0com-cvs] hub4com/plugins/pin2con filter.cpp,1.9,1.10
The virtual serial port driver for Windows.
Brought to you by:
vfrolov
From: Vyacheslav F. <vf...@us...> - 2008-10-16 09:25:26
|
Update of /cvsroot/com0com/hub4com/plugins/pin2con In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv18517/plugins/pin2con Modified Files: filter.cpp Log Message: Changed return type of ROUTINE_MSG_REPLACE_*() to BOOL Index: filter.cpp =================================================================== RCS file: /cvsroot/com0com/hub4com/plugins/pin2con/filter.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** filter.cpp 30 Sep 2008 07:52:09 -0000 1.9 --- filter.cpp 16 Oct 2008 09:24:23 -0000 1.10 *************** *** 20,23 **** --- 20,26 ---- * * $Log$ + * Revision 1.10 2008/10/16 09:24:23 vfrolov + * Changed return type of ROUTINE_MSG_REPLACE_*() to BOOL + * * Revision 1.9 2008/09/30 07:52:09 vfrolov * Removed HUB_MSG_TYPE_LINE_STATUS filtering *************** *** 293,297 **** case HUB_MSG_TYPE_CONNECT: // discard any CONNECT messages from the input stream ! pMsgReplaceNone(pInMsg, HUB_MSG_TYPE_EMPTY); break; case HUB_MSG_TYPE_MODEM_STATUS: { --- 296,301 ---- case HUB_MSG_TYPE_CONNECT: // discard any CONNECT messages from the input stream ! if (!pMsgReplaceNone(pInMsg, HUB_MSG_TYPE_EMPTY)) ! return FALSE; break; case HUB_MSG_TYPE_MODEM_STATUS: { |