Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
What language is Test.exe in? If C/C++, is it compiled as UNICODE or ANSI? – arx Feb 19 at 14:41
It's in C. It's only printing the args to a file with fprintf(). I compiled it using #undef UNICODE and #undef _UNICODE from a VisualStudio project, but I've got the same result. The problem must be in how windows expands "%1". – Aurel Savoiu Feb 19 at 14:58
Could it be that you are printing this on a non-unicode console? – Rakkun Feb 19 at 15:14
1  
Windows is expanding %1 just fine. The problem is that your program is non-Unicode, so you are unable to see the full character repertoire. Even when you switch to Unicode, you are using fprintf which 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
I tried opening a file with windows CreateFile() and writing the bytes of the args directly with WriteFile() but when I open the file the content is still wrong (I opened with notepad and wordpad).The Test.exe is a test I made to see how windows passes the argumets of context menues to executables. I have a separate project done in Java wich has a launch4j executable wrapper over a jar, and the jar receives the file path incorecly for files wich have diacritics :(. Not sure it is a matter of how I print the strings – Aurel Savoiu Feb 19 at 16:09

1 Answer

Thanks guys, I found the problem. My program was using "int main(int argc, char** argv)" and even after using the windows function MultiByteToWideChar() the result was stil the same. After modifiing to "int wmain (int argc, PWSTR* argv)", I finally got the result I was looking for.

It seems that windows sends unicode bytes only to "wmain".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.