diff options
Diffstat (limited to 'plugins/ConnectionNotify/src/debug.cpp')
-rw-r--r-- | plugins/ConnectionNotify/src/debug.cpp | 13 |
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);
-}
|