Home
last modified time | relevance | path

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

/reactos/dll/win32/shell32/
H A Dshlexec.cpp2786 SHELLEXECUTEINFOA ExecInfo; in RealShellExecuteExA() local
2793 ZeroMemory(&ExecInfo, sizeof(ExecInfo)); in RealShellExecuteExA()
2794 ExecInfo.cbSize = sizeof(ExecInfo); in RealShellExecuteExA()
2796 ExecInfo.hwnd = hwnd; in RealShellExecuteExA()
2798 ExecInfo.lpFile = lpFile; in RealShellExecuteExA()
2832 return ExecInfo.hInstApp; in RealShellExecuteExA()
2860 ZeroMemory(&ExecInfo, sizeof(ExecInfo)); in RealShellExecuteExW()
2861 ExecInfo.cbSize = sizeof(ExecInfo); in RealShellExecuteExW()
2863 ExecInfo.hwnd = hwnd; in RealShellExecuteExW()
2865 ExecInfo.lpFile = lpFile; in RealShellExecuteExW()
[all …]
/reactos/base/shell/explorer/
H A Dstartup.cpp441 SHELLEXECUTEINFOW ExecInfo; in AutoStartupApplications() local
442 ZeroMemory(&ExecInfo, sizeof(ExecInfo)); in AutoStartupApplications()
443 ExecInfo.cbSize = sizeof(ExecInfo); in AutoStartupApplications()
444 ExecInfo.lpFile = szPath; in AutoStartupApplications()
445 ShellExecuteExW(&ExecInfo); in AutoStartupApplications()