summaryrefslogtreecommitdiff
path: root/winpipes.h
diff options
context:
space:
mode:
Diffstat (limited to 'winpipes.h')
-rw-r--r--winpipes.h5
1 files changed, 3 insertions, 2 deletions
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;