Open cher-nov opened 7 years ago
There's no necessity in the usage of ANSI versions of WinAPI functions since minimum supported WIndows version is Windows XP.
Proposal:
UNICODE
*A()
*W()
multibyte.cpp
std::wstring
<codecvt>
TODO: add CREATE_UNICODE_ENVIRONMENT when migrating onto Unicode WinAPI
There's no necessity in the usage of ANSI versions of WinAPI functions since minimum supported WIndows version is Windows XP.
Proposal:
UNICODE
macro project-wide when compiling for Windows.*A()
and*W()
by simple calls without suffixes (that wil be mapped to*W()
functions due toUNICODE
defined.multibyte.cpp
and replace it by usage of thestd::wstring
and C++11<codecvt>
where needed.