I\'m writing a little wrapper for an application that uses files as arguments.
The wrapper needs to be in Unicode, so I\'m using wchar_t for the characters and strings I
On Windows, you can use GetCommandLineW() and CommandLineToArgvW() to produce an argv-style wchar_t[] array, even if the app is not compiled for Unicode.
GetCommandLineW()
CommandLineToArgvW()
wchar_t[]