mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
fix UNICODE command line handling for MinGW builds
svn path=/trunk/; revision=13332
This commit is contained in:
parent
15476f2d69
commit
f99bb4b97d
1 changed files with 3 additions and 0 deletions
|
@ -482,6 +482,9 @@ int main(int argc, char* argv[])
|
|||
while(*cmdline && !_istspace(*cmdline))
|
||||
++cmdline;
|
||||
|
||||
while(_istspace(*cmdline))
|
||||
++cmdline;
|
||||
|
||||
return wWinMain(GetModuleHandle(NULL), 0, cmdline, nShowCmd);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue