diff options
author | George Hazan <ghazan@miranda.im> | 2022-01-23 20:24:09 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-01-23 20:24:31 +0300 |
commit | 5e58fc978618098c00bf0eec960eafe81fe87e3d (patch) | |
tree | e182ef2f7c3e6ec2ccb1be177853ad6d95c92a3a /plugins/Ping/src/log.h | |
parent | 776200f3ea1f03b3fb03c55d07e5fe93630789be (diff) |
fixes #2999 (Ping plugin hangs Miranda on exit)
Diffstat (limited to 'plugins/Ping/src/log.h')
-rw-r--r-- | plugins/Ping/src/log.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/Ping/src/log.h b/plugins/Ping/src/log.h index 1930dddede..393f4509d8 100644 --- a/plugins/Ping/src/log.h +++ b/plugins/Ping/src/log.h @@ -1,9 +1,8 @@ #ifndef _PING_LOG
#define _PING_LOG
-INT_PTR Log(WPARAM wParam, LPARAM lParam);
-INT_PTR GetLogFilename(WPARAM wParam, LPARAM lParam);
-INT_PTR SetLogFilename(WPARAM wParam, LPARAM lParam);
+void Log(const wchar_t *pwszText);
+void GetLogFilename(wchar_t *pBuf, size_t cbLen);
INT_PTR ViewLogData(WPARAM wParam, LPARAM lParam);
#endif
|