diff options
Diffstat (limited to 'updater/common.h')
-rw-r--r-- | updater/common.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/updater/common.h b/updater/common.h index d454179..45519a9 100644 --- a/updater/common.h +++ b/updater/common.h @@ -108,9 +108,11 @@ extern bool is_idle; extern HANDLE hNetlibUser, hNetlibHttp;
-static int __inline NLog(char *msg) {
- return CallService(MS_NETLIB_LOG, (WPARAM)hNetlibUser, (LPARAM)msg);
-}
+void NLog(char *msg);
+
+#ifdef _UNICODE
+void NLog(wchar_t *msg);
+#endif
// clist 'exit' menu item command id
#define ID_ICQ_EXIT 40001
|