summaryrefslogtreecommitdiff
path: root/protocols/SkypeClassic/debug.h
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-10-29 08:47:48 +0000
committerRobert Pösel <robyer@seznam.cz>2013-10-29 08:47:48 +0000
commit50421b7809c47bd95c59b4a5627e2f89c8bccfa5 (patch)
tree323784b1c0bb7c86e5df509aab310fa1404680ef /protocols/SkypeClassic/debug.h
parent8604516498f9135ac1c4379488228d84e69a89ab (diff)
SkypeClassic: Folders structure and project cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@6668 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeClassic/debug.h')
-rw-r--r--protocols/SkypeClassic/debug.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/protocols/SkypeClassic/debug.h b/protocols/SkypeClassic/debug.h
deleted file mode 100644
index 9582246251..0000000000
--- a/protocols/SkypeClassic/debug.h
+++ /dev/null
@@ -1,23 +0,0 @@
-//#define DEBUG_RELEASE 1
-
-#ifdef DEBUG_RELEASE
- #define _DEBUG 1
-#endif
-
-#ifdef _DEBUG
- void init_debug(void);
- void end_debug (void);
- void do_log(const char *pszFormat, ...);
- #define DEBUG_OUT(a) OUTPUT(a)
- #define TRACE(a) OutputDebugString(a)
- #define TRACEA(a) OutputDebugStringA(a)
- #define TRACEW(a) OutputDebugStringW(a)
- #define LOG(a) do_log a
-#else
- #define DEBUG_OUT(a)
- #define LOG(a)
- #define TRACE(a)
- #define TRACEA(a)
- #define TRACEW(a)
-#endif
-