summaryrefslogtreecommitdiff
path: root/Plugins/utils/tstring.h
diff options
context:
space:
mode:
authorpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2009-01-24 00:29:50 +0000
committerpescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7>2009-01-24 00:29:50 +0000
commitbe94a568ef65120465b49f5c6db90cd4ec3c3eb2 (patch)
treefe7fc014fe1053e821860c53f78e4cabb95b9ac7 /Plugins/utils/tstring.h
parent52e0dac49837ca1123412fccd95fdb95873c8321 (diff)
utils: sync with BerliOS
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@132 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/utils/tstring.h')
-rw-r--r--Plugins/utils/tstring.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Plugins/utils/tstring.h b/Plugins/utils/tstring.h
new file mode 100644
index 0000000..fb340bc
--- /dev/null
+++ b/Plugins/utils/tstring.h
@@ -0,0 +1,14 @@
+#ifndef __TSTRING_H__
+# define __TSTRING_H__
+
+#include <windows.h>
+#include <tchar.h>
+#include <string>
+
+
+namespace std {
+ typedef basic_string<TCHAR, char_traits<TCHAR>, allocator<TCHAR> > tstring;
+}
+
+
+#endif // __TSTRING_H__