diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-06 03:23:02 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2010-04-06 03:23:02 +0000 |
commit | 8f363ee967527cf9b91e909cd32684a4ac5a3ce9 (patch) | |
tree | bf90ac39dd3e5593d758ff4f200dc57b15319e01 /updater/common.h | |
parent | fce9ccb39b38cb90458cb10947034c0202d087c6 (diff) |
More optimizations
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@500 4f64403b-2f21-0410-a795-97e2b3489a10
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
|