For my Win32 project i want like to draw special chars with something like TextOut()... I will define the special chars as WCHAR and set its HexValue like following codesnip but i cant get it work. Any idea how to solve this? Thanks!
WCHAR testchar = 0x00A9;
TextOut( hdc, 20, 10, TEXT("A"), 1); // Works fine !
TextOut( hdc, 80, 10, (WCHAR)testchar , 2); // Does not work :(
Btw yes, the project is compiled by using unicode charset!