Update of /cvsroot/com0com/hub4com/plugins
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv21436/plugins
Modified Files:
plugins_api.h
Log Message:
Added fake read filter method to ports
Index: plugins_api.h
===================================================================
RCS file: /cvsroot/com0com/hub4com/plugins/plugins_api.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** plugins_api.h 11 Aug 2008 07:15:33 -0000 1.5
--- plugins_api.h 15 Aug 2008 12:44:59 -0000 1.6
***************
*** 20,23 ****
--- 20,26 ----
*
* $Log$
+ * Revision 1.6 2008/08/15 12:44:59 vfrolov
+ * Added fake read filter method to ports
+ *
* Revision 1.5 2008/08/11 07:15:33 vfrolov
* Replaced
***************
*** 266,269 ****
--- 269,275 ----
typedef BOOL (CALLBACK PORT_START)(
HPORT hPort);
+ typedef BOOL (CALLBACK PORT_FAKE_READ_FILTER)(
+ HPORT hPort,
+ HUB_MSG *pInMsg);
typedef BOOL (CALLBACK PORT_WRITE)(
HPORT hPort,
***************
*** 283,286 ****
--- 289,293 ----
PORT_INIT *pInit;
PORT_START *pStart;
+ PORT_FAKE_READ_FILTER *pFakeReadFilter;
PORT_WRITE *pWrite;
PORT_ADD_XOFF *pAddXoff;
|