I've made a Windows Context Menu item like this :
key: HKEY_CLASSES_ROOT*\shell\Test\command
command: "c:\Test.exe" "%1"
The %1 is not expanded as expected when sending "C:\Users\John\Desktop\Testă.pdf" I receive the fallowing string : "C:\Users\John\Desktop\Testa.pdf" The "ă" is being replaced with "a" and I don't want that. Is tis an encoding problem ? can someon help me please ?
fprintfwhich does not support Unicode. And your console may not support the character in question. Look at the string in the debugger; don't trust printf – Raymond Chen Feb 19 at 15:18