diff options
author | segfault <toni@impl.cc> | 2020-12-19 19:27:05 +0100 |
---|---|---|
committer | segfault <toni@impl.cc> | 2020-12-19 19:27:05 +0100 |
commit | 09eb5df77d2db0693db4f8c2d4f6f96c0b7eb32e (patch) | |
tree | 1f05d52be652457ee42c6cdd8bbe00a2de2b73d0 /include | |
parent | 1f8b3cf72f0f9d1803fbc5543a475aeec02bba19 (diff) |
PingThread calls function on timeout.
Diffstat (limited to 'include')
-rw-r--r-- | include/KInterface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/KInterface.h b/include/KInterface.h index 981ae35..19c9268 100644 --- a/include/KInterface.h +++ b/include/KInterface.h @@ -101,11 +101,11 @@ public: UINT32 getLastNtStatus(); SendRecvReturn RecvWait(DWORD timeout = DEFAULT_TIMEOUT_MS); - void StartPingThread(void); + void StartPingThread(void (__cdecl *onTimeout)(void)); private: SendRecvReturn SendRecvWait(UINT32 type, DWORD timeout = DEFAULT_TIMEOUT_MS); - void PingThread(void); + void PingThread(void (__cdecl *onTimeout)(void)); PVOID m_shmem = NULL; HANDLE m_kevent = NULL, m_uevent = NULL; |