dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] pnet ChangeLog support/serial.c


From: Radek Polak
Subject: [dotgnu-pnet-commits] pnet ChangeLog support/serial.c
Date: Wed, 10 Oct 2007 12:03:21 +0000

CVSROOT:        /sources/dotgnu-pnet
Module name:    pnet
Changes by:     Radek Polak <radekp>    07/10/10 12:03:20

Modified files:
        .              : ChangeLog 
        support        : serial.c 

Log message:
        fix build on cygwin

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnet/ChangeLog?cvsroot=dotgnu-pnet&r1=1.3502&r2=1.3503
http://cvs.savannah.gnu.org/viewcvs/pnet/support/serial.c?cvsroot=dotgnu-pnet&r1=1.10&r2=1.11

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.3502
retrieving revision 1.3503
diff -u -b -r1.3502 -r1.3503
--- ChangeLog   9 Oct 2007 12:25:48 -0000       1.3502
+++ ChangeLog   10 Oct 2007 12:03:20 -0000      1.3503
@@ -1,3 +1,7 @@
+2007-10-10  Radek Polak  <address@hidden>
+
+       * support/serial.c: Fix build on cygwin.
+
 2007-10-09  Radek Polak  <address@hidden>
 
        * engine/int_proto.h, engine/int_table.c, engine/lib_serial.c,

Index: support/serial.c
===================================================================
RCS file: /sources/dotgnu-pnet/pnet/support/serial.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- support/serial.c    9 Oct 2007 12:25:49 -0000       1.10
+++ support/serial.c    10 Oct 2007 12:03:20 -0000      1.11
@@ -1003,7 +1003,7 @@
        return readCount;
 }
 
-void ILSerialWrite(ILSerial *handle, const void *buffer, ILInt32 count)
+int ILSerialWrite(ILSerial *handle, const void *buffer, ILInt32 count)
 {
        DWORD writeCount = 0;
        if(!WriteFile(handle->fd, buffer, count, &writeCount, NULL))
@@ -1101,7 +1101,7 @@
        return 0;
 }
 
-void ILSerialWrite(ILSerial *handle, const void *buffer, ILInt32 count)
+int ILSerialWrite(ILSerial *handle, const void *buffer, ILInt32 count)
 {
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]