I have a custom file which stores a list of German umlauts ("ä" "ö" ) My program needs to read these letters and print an ascii value.
I have tried this
key = (WORD) VkKeyScanEx((TCHAR) szLetterName[0], ::GetKeyboardLayout(0));
This piece of code always returns 65535 for all the german letters but gives a proper value for English Alphabets.
Any idea why this issue is coming. Any suggestions to fix this issue ??