diff options
author | René Schümann <white06tiger@gmail.com> | 2015-03-26 20:38:55 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2015-03-26 20:38:55 +0000 |
commit | 5f2e4efe46fefa7cd11f275896954c24be37b568 (patch) | |
tree | 00fb544f0a9a9e9a89dd1af28b97a6248edac9eb /plugins/MirOTR/src/stdafx.h | |
parent | 1f7e069bda342dff43e2224060f10fcb098ea62a (diff) |
MirOTR: compatibility update to support/use libotr 4
+ added otrlextensions from Psi+ (thanks guys, better than our old modification to libotr)
* basic instance tag support, though we don't offer user choice yet.
+ added ProtoGetNickname(), stolen from TabSRMM to get our own nickname of given protocol (utils.cpp)
git-svn-id: http://svn.miranda-ng.org/main/trunk@12503 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR/src/stdafx.h')
-rw-r--r-- | plugins/MirOTR/src/stdafx.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/MirOTR/src/stdafx.h b/plugins/MirOTR/src/stdafx.h index 29c63f73e4..a67c5a40f4 100644 --- a/plugins/MirOTR/src/stdafx.h +++ b/plugins/MirOTR/src/stdafx.h @@ -74,9 +74,9 @@ using namespace std; #include "svcs_proto.h" #ifdef _DEBUG - #define DEBUGOUTA(x) OutputDebugStringA(x); - #define DEBUGOUT(x) OutputDebugString(x); - #define DEBUGOUT_T(x) OutputDebugString(__T(x)); + #define DEBUGOUTA(x) OutputDebugStringA(x) + #define DEBUGOUT(x) OutputDebugString(x) + #define DEBUGOUT_T(x) OutputDebugString(__T(x)) #else #define DEBUGOUTA(x); #define DEBUGOUT(x) @@ -92,5 +92,3 @@ using namespace std; #define PREF_NO_HISTORY 0x10000 extern HINSTANCE hInst; - -// TODO: Hier auf zusätzliche Header, die das Programm erfordert, verweisen. |