From 82c4eb38804e011cfd855bc9e292f7533bfe4c2f Mon Sep 17 00:00:00 2001 From: weidai Date: Thu, 6 Apr 2006 21:20:25 +0000 Subject: merge in changes by denis bider and fix compile on gcc 3.4.4 and MSVC 6 git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@219 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- winpipes.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'winpipes.h') diff --git a/winpipes.h b/winpipes.h index 80c1143..07225f9 100644 --- a/winpipes.h +++ b/winpipes.h @@ -69,7 +69,7 @@ public: bool EofReceived() const {return m_eofReceived;} unsigned int GetMaxWaitObjectCount() const {return 1;} - void GetWaitObjects(WaitObjectContainer &container); + void GetWaitObjects(WaitObjectContainer &container, CallStack const& callStack); private: WindowsHandle m_event; @@ -88,10 +88,11 @@ public: bool MustWaitForResult() {return true;} void Send(const byte* buf, size_t bufLen); unsigned int GetSendResult(); + bool MustWaitForEof() { return false; } void SendEof() {} unsigned int GetMaxWaitObjectCount() const {return 1;} - void GetWaitObjects(WaitObjectContainer &container); + void GetWaitObjects(WaitObjectContainer &container, CallStack const& callStack); private: WindowsHandle m_event; -- cgit v1.2.1