Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <windows.h>
- #include <io.h> // для функции _setmode
- #include <fcntl.h> // для константы _O_U8TEXT
- void SETGLOBALLOCALES(){
- _setmode(_fileno(stdout), _O_U16TEXT);
- _setmode(_fileno(stdin), _O_U16TEXT);
- _setmode(_fileno(stderr), _O_U16TEXT);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement