summaryrefslogtreecommitdiff
path: root/plugins/Utils/tstring.h
blob: fb340bcd0334a1440a9fd13907c9acd33b8e81a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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__