]> git.mxchange.org Git - flightgear.git/blobdiff - src/Network/iochannel.cxx
UIUC flight model contribution. This is based on LaRCsim, but can read
[flightgear.git] / src / Network / iochannel.cxx
index c054f2c26f683ac0519fac947f6d28264321e73a..afce4006e794e5cbc90ac8ee52dfaeedc2ce8529 100644 (file)
@@ -45,13 +45,25 @@ bool FGIOChannel::open( FGProtocol::fgProtocolDir dir ) {
 
 
 // dummy process routine
-bool FGIOChannel::read( char *buf, int *length ) {
+int FGIOChannel::read( char *buf, int length ) {
+    return 0;
+}
+
+
+// dummy process routine
+int FGIOChannel::readline( char *buf, int length ) {
+    return 0;
+}
+
+
+// dummy process routine
+int FGIOChannel::write( char *buf, int length ) {
     return false;
 }
 
 
 // dummy process routine
-bool FGIOChannel::write( char *buf, int length ) {
+int FGIOChannel::writestring( char *str ) {
     return false;
 }