diff options
Diffstat (limited to 'plugins/Clist_modern/src/modern_log.h')
-rw-r--r-- | plugins/Clist_modern/src/modern_log.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/Clist_modern/src/modern_log.h b/plugins/Clist_modern/src/modern_log.h new file mode 100644 index 0000000000..b96eaafd65 --- /dev/null +++ b/plugins/Clist_modern/src/modern_log.h @@ -0,0 +1,19 @@ +#pragma once
+
+#ifndef __LOG_H__
+# define __LOG_H__
+
+#ifdef _DEBUG
+
+void Log(const char *file, int line, const char *fmt, ...);
+#define log0(s) Log(__FILE__,__LINE__,s)
+#define log1(s,a) Log(__FILE__,__LINE__,s,a)
+
+#else
+
+#define log0(s)
+#define log1(s,a)
+
+#endif
+
+#endif // __LOG_H__
\ No newline at end of file |