CommandLineToArgvW

2020-07-03  本文已影响0人  锦囊喵

Parses a Unicode command line string and returns an array of pointers to the command line arguments, along with a count of such arguments, in a way that is similar to the standard C run-time argv and argc values.

int __cdecl main() {
LPWSTR *szArglist;
int nArgs;
int i;
 
szArglist = CommandLineToArgvW(GetCommandLineW(), &nArgs);
if( NULL == szArglist ) {
wprintf(L"CommandLineToArgvW failed\n");
return 0;
}
else for( i=0; i<nArgs; i++) printf("%d: %ws\n", i, szArglist[i]);
 
// Free memory allocated for CommandLineToArgvW arguments.
 
LocalFree(szArglist);
 
return(1);
}
上一篇 下一篇

猜你喜欢

热点阅读