| 429 | } |
| 430 | |
| 431 | std::vector<std::wstring> GetCommandLineArguments() |
| 432 | { |
| 433 | int argc = 0; |
| 434 | HLocal args(CommandLineToArgvW(GetCommandLineW(), &argc)); |
| 435 | auto argv = static_cast<const wchar_t**>(args.get()); |
| 436 | return std::vector<std::wstring>(argv, argv + argc); |
| 437 | } |
| 438 | |
| 439 | DWORD GetExitCodeProcess(HANDLE hProcess) |
| 440 | { |
no outgoing calls