aboutsummaryrefslogtreecommitdiff
path: root/src/client.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-05-02 01:24:55 +0000
committerMike Buland <eichlan@xagasoft.com>2010-05-02 01:24:55 +0000
commitfdf7e508f70bbf24adeb1beba2fc5ab825217f92 (patch)
treefb2703063670a3ed51665f5854d9d7b5fe68efbf /src/client.h
parentb4f8ebcb496ca231fa737307a0f9757d01e37c7b (diff)
downloadlibbu++-fdf7e508f70bbf24adeb1beba2fc5ab825217f92.tar.gz
libbu++-fdf7e508f70bbf24adeb1beba2fc5ab825217f92.tar.bz2
libbu++-fdf7e508f70bbf24adeb1beba2fc5ab825217f92.tar.xz
libbu++-fdf7e508f70bbf24adeb1beba2fc5ab825217f92.zip
wow, bug fixes everywhere.
Diffstat (limited to 'src/client.h')
-rw-r--r--src/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.h b/src/client.h
index 28db088..aecb16c 100644
--- a/src/client.h
+++ b/src/client.h
@@ -43,8 +43,8 @@ namespace Bu
43 void write( uint16_t nData ); 43 void write( uint16_t nData );
44 void write( uint32_t nData ); 44 void write( uint32_t nData );
45 void write( uint64_t nData ); 45 void write( uint64_t nData );
46 void read( void *pData, int nBytes ); 46 int read( void *pData, int nBytes );
47 void peek( void *pData, int nBytes, int nOffset=0 ); 47 int peek( void *pData, int nBytes, int nOffset=0 );
48 void seek( int nBytes ); 48 void seek( int nBytes );
49 long getInputSize(); 49 long getInputSize();
50 50