summaryrefslogtreecommitdiff
path: root/protocols/SkypeClassic/src/debug.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-05-31 18:18:59 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-05-31 18:18:59 +0000
commitee073251eba82de6a4632b467b1574baddd6aeaa (patch)
tree5fbadbc4e2068d60fba4de2ee9f7170bd2506582 /protocols/SkypeClassic/src/debug.h
parentafdb3f779b8d9059a474882ad78974b3ce021ff7 (diff)
SkypeClassic moved to deprecated
git-svn-id: http://svn.miranda-ng.org/main/trunk@13943 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeClassic/src/debug.h')
-rw-r--r--protocols/SkypeClassic/src/debug.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/protocols/SkypeClassic/src/debug.h b/protocols/SkypeClassic/src/debug.h
deleted file mode 100644
index 9582246251..0000000000
--- a/protocols/SkypeClassic/src/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
-