mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
added missing PIDL parameter for SHELL_FindExecutable()
svn path=/trunk/; revision=7724
This commit is contained in:
parent
5405cd7d70
commit
dc141d9e7c
2 changed files with 2 additions and 2 deletions
|
@ -245,7 +245,7 @@ typedef UINT (*SHELL_ExecuteW32)(const WCHAR *lpCmd, void *env, BOOL shWait,
|
|||
BOOL WINAPI ShellExecuteExW32(LPSHELLEXECUTEINFOW psei, SHELL_ExecuteW32 execfunc);
|
||||
|
||||
UINT SHELL_FindExecutable(LPCWSTR lpPath, LPCWSTR lpFile, LPCWSTR lpOperation,
|
||||
LPWSTR lpResult, LPWSTR key, void **env, LPCWSTR args);
|
||||
LPWSTR lpResult, LPWSTR key, void **env, LPITEMIDLIST pidl, LPCWSTR args);
|
||||
|
||||
extern WCHAR swShell32Name[MAX_PATH];
|
||||
extern char sShell32Name[MAX_PATH];
|
||||
|
|
|
@ -673,7 +673,7 @@ static HRESULT WINAPI IPersistStream_fnSave(
|
|||
*exePath = '\0';
|
||||
|
||||
if (This->sPath)
|
||||
SHELL_FindExecutable(NULL, This->sPath, wOpen, exePath, NULL, NULL, NULL);
|
||||
SHELL_FindExecutable(NULL, This->sPath, wOpen, exePath, NULL, NULL, NULL, NULL);
|
||||
|
||||
/* if there's no PIDL, generate one */
|
||||
if( ! This->pPidl )
|
||||
|
|
Loading…
Reference in a new issue