mirror of
https://github.com/yuanyuanxiang/SimpleRemoter.git
synced 2026-01-21 23:13:08 +08:00
12 lines
181 B
C
12 lines
181 B
C
#pragma once
|
|
|
|
#ifdef UNICODE
|
|
#define tcout wcout
|
|
#define tcerr wcerr
|
|
#define tstring wstring
|
|
#else
|
|
#define tcout cout
|
|
#define tcerr cerr
|
|
#define tstring string
|
|
#endif // UNICODE
|