summaryrefslogtreecommitdiff
path: root/winpipes.h
diff options
context:
space:
mode:
Diffstat (limited to 'winpipes.h')
-rw-r--r--winpipes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winpipes.h b/winpipes.h
index 78eee6a..80c1143 100644
--- a/winpipes.h
+++ b/winpipes.h
@@ -64,7 +64,7 @@ public:
WindowsPipeReceiver();
bool MustWaitForResult() {return true;}
- bool Receive(byte* buf, unsigned int bufLen);
+ bool Receive(byte* buf, size_t bufLen);
unsigned int GetReceiveResult();
bool EofReceived() const {return m_eofReceived;}
@@ -86,7 +86,7 @@ public:
WindowsPipeSender();
bool MustWaitForResult() {return true;}
- void Send(const byte* buf, unsigned int bufLen);
+ void Send(const byte* buf, size_t bufLen);
unsigned int GetSendResult();
void SendEof() {}