Home
last modified time | relevance | path

Searched refs:shex_info (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/base/process/
Dlaunch_win.cc253 SHELLEXECUTEINFO shex_info = {0}; in LaunchElevatedProcess() local
254 shex_info.cbSize = sizeof(shex_info); in LaunchElevatedProcess()
255 shex_info.fMask = SEE_MASK_NOCLOSEPROCESS; in LaunchElevatedProcess()
256 shex_info.hwnd = GetActiveWindow(); in LaunchElevatedProcess()
257 shex_info.lpVerb = L"runas"; in LaunchElevatedProcess()
258 shex_info.lpFile = file.c_str(); in LaunchElevatedProcess()
259 shex_info.lpParameters = arguments.c_str(); in LaunchElevatedProcess()
260 shex_info.lpDirectory = NULL; in LaunchElevatedProcess()
261 shex_info.nShow = options.start_hidden ? SW_HIDE : SW_SHOW; in LaunchElevatedProcess()
262 shex_info.hInstApp = NULL; in LaunchElevatedProcess()
[all …]