summaryrefslogtreecommitdiff
path: root/plugins/ConnectionNotify/src/debug.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-03-02 12:32:44 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-03-02 12:32:55 +0300
commit931a7dc1ac0dbc7e6c1083583ced915e572f5b47 (patch)
tree9fe9a6448d44030e26aa7107ce16044ed413e0d0 /plugins/ConnectionNotify/src/debug.cpp
parentdd7d9954042254e66e3bbbec7195c6be8b1a0663 (diff)
all protocols (even virtual ones) moved to the Protocols folder
Diffstat (limited to 'plugins/ConnectionNotify/src/debug.cpp')
-rw-r--r--plugins/ConnectionNotify/src/debug.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/plugins/ConnectionNotify/src/debug.cpp b/plugins/ConnectionNotify/src/debug.cpp
deleted file mode 100644
index d7c32e755b..0000000000
--- a/plugins/ConnectionNotify/src/debug.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "stdafx.h"
-
-void _OutputDebugString(wchar_t* lpOutputString, ...)
-{
- CMStringW format;
- va_list args;
- va_start(args, lpOutputString);
- format.FormatV(lpOutputString, args);
- va_end(args);
-
- format.AppendChar('\n');
- OutputDebugString(format);
-}