diff --git a/docs/businterface.html b/docs/businterface.html index 97d81db..0ebb2d5 100644 --- a/docs/businterface.html +++ b/docs/businterface.html @@ -69,7 +69,7 @@ class MyInterface : StreamBusInterface bool lockRequest(unsigned long lockTimeout_ms); bool unlock(); bool writeRequest(const void* output, size_t size, unsigned long writeTimeout_ms); - bool readRequest(unsigned long replyTimeout_ms, unsigned long readTimeout_ms, size_t expectedLength, bool async); + bool readRequest(unsigned long replyTimeout_ms, unsigned long readTimeout_ms, ssize_t expectedLength, bool async); bool supportsAsyncRead(); bool supportsEvent(); bool acceptEvent(unsigned long mask, unsigned long timeout_ms); @@ -118,7 +118,7 @@ bool writeRequest(const void* output,
bool readRequest(unsigned long replyTimeout_ms, unsigned long readTimeout_ms, - size_t expectedLength, bool async); + ssize_t expectedLength, bool async);
bool supportsAsyncRead(); @@ -460,7 +460,7 @@ The client may request more I/O or call unlock() after
bool readRequest(unsigned long replyTimeout_ms, unsigned long readTimeout_ms, - size_t expectedLength, bool async); + ssize_t expectedLength, bool async);
ssize_t readCallback(IoStatus status,