Reputation: 1
Is there a way to set the character set to multi byte in code. By that I mean without going into the properties of the compiler and setting it. I mean it by, well...in code. :p
Upvotes: 0
Views: 348
Reputation: 101456
There are #defines that control how things are compiled:
#define _MBCS
Upvotes: 0