- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
#ifdef _UNICODE
typedef wchar_t char_t;
namespace std
{
typedef wstring string_t;
typedef wistream istream_t;
typedef wostream ostream_t;
typedef wifstream ifstream_t;
typedef wofstream ofstream_t;
typedef wostringstream ostringstream_t;
typedef wistringstream istringstream_t;
typedef wstringstream stringstream_t;
}
#else // MBCS or SBCS
typedef char char_t;
namespace std
{
typedef istream istream_t;
typedef ostream ostream_t;
typedef ifstream ifstream_t;
typedef ofstream ofstream_t;
typedef string string_t;
typedef ostringstream ostringstream_t;
typedef istringstream istringstream_t;
typedef stringstream stringstream_t;
}
#endif // _UNICODE