From 0e9e528e18ff63d46e5b3471d6fa12344b0d28b3 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 2 Jul 2015 19:04:50 +0000 Subject: unified project for clist_modern git-svn-id: http://svn.miranda-ng.org/main/trunk@14473 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Clist_modern/src/modern_log.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 plugins/Clist_modern/src/modern_log.h (limited to 'plugins/Clist_modern/src/modern_log.h') 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 -- cgit v1.2.3