mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:13:00 +00:00
[SHELL32][SHELL32_APITEST][SDK] Implement ShellExec_RunDLL (#7615)
Implementing missing features... JIRA issue: CORE-19278 - Modify shell32.spec. - Move function definitions from stubs.cpp into shlexec.cpp. - Add prototypes to <undocshell.h>.
This commit is contained in:
parent
a25e7ee9d7
commit
dad3a0938a
7 changed files with 171 additions and 31 deletions
|
@ -712,6 +712,27 @@ RealShellExecuteExW(
|
|||
_Out_opt_ PHANDLE lphProcess,
|
||||
_In_ DWORD dwFlags);
|
||||
|
||||
VOID WINAPI
|
||||
ShellExec_RunDLL(
|
||||
_In_opt_ HWND hwnd,
|
||||
_In_opt_ HINSTANCE hInstance,
|
||||
_In_ PCSTR pszCmdLine,
|
||||
_In_ INT nCmdShow);
|
||||
|
||||
VOID WINAPI
|
||||
ShellExec_RunDLLA(
|
||||
_In_opt_ HWND hwnd,
|
||||
_In_opt_ HINSTANCE hInstance,
|
||||
_In_ PCSTR pszCmdLine,
|
||||
_In_ INT nCmdShow);
|
||||
|
||||
VOID WINAPI
|
||||
ShellExec_RunDLLW(
|
||||
_In_opt_ HWND hwnd,
|
||||
_In_opt_ HINSTANCE hInstance,
|
||||
_In_ PCWSTR pszCmdLine,
|
||||
_In_ INT nCmdShow);
|
||||
|
||||
/* RegisterShellHook types */
|
||||
#define RSH_DEREGISTER 0
|
||||
#define RSH_REGISTER 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue