summaryrefslogtreecommitdiff
path: root/plugins/ShellExt/src/stdafx.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ShellExt/src/stdafx.h')
-rw-r--r--plugins/ShellExt/src/stdafx.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/ShellExt/src/stdafx.h b/plugins/ShellExt/src/stdafx.h
index a5753b7a91..4527f78a08 100644
--- a/plugins/ShellExt/src/stdafx.h
+++ b/plugins/ShellExt/src/stdafx.h
@@ -49,4 +49,10 @@ extern HANDLE hLogger;
int OnOptionsInit(WPARAM wParam, LPARAM lParam);
-void logA(const char *format, ...); \ No newline at end of file
+#ifdef LOG_ENABLED
+void logA(const char *format, ...);
+#else
+#define logA(A, ...)
+#endif
+
+UINT murmur_hash(const char *str);