diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-06 21:04:14 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-06 21:04:14 +0000 |
commit | 180aaabf99e2ae20f7b2f8e370490b9ee7244ca7 (patch) | |
tree | da446ea98d83017b0aee5421651230693f2f283a /protocols/Twitter/twitter.h | |
parent | 4b9b01c4e23576dc423d36a39ece3adc69e0b1ae (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@343 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Twitter/twitter.h')
-rw-r--r-- | protocols/Twitter/twitter.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/Twitter/twitter.h b/protocols/Twitter/twitter.h index 56d8914117..d26c06bdbd 100644 --- a/protocols/Twitter/twitter.h +++ b/protocols/Twitter/twitter.h @@ -30,6 +30,12 @@ using std::vector; #include "StringConv.h"
#include "stdafx.h"
+#if defined( _UNICODE )
+ #define tstring wstring
+#else
+ #define tstring string
+#endif
+
typedef unsigned long long twitter_id;
typedef std::map<std::wstring, std::wstring> OAuthParameters;
|