mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
[SHELL32]
* Mark as hotpatchable. CORE-7959 svn path=/trunk/; revision=62428
This commit is contained in:
parent
19962054f9
commit
1116c00fa2
2 changed files with 9 additions and 3 deletions
|
@ -80,7 +80,7 @@ add_library(shell32 SHARED
|
|||
${CMAKE_CURRENT_BINARY_DIR}/shell32_stubs.c
|
||||
${CMAKE_CURRENT_BINARY_DIR}/shell32.def)
|
||||
|
||||
set_module_type(shell32 win32dll UNICODE)
|
||||
set_module_type(shell32 win32dll UNICODE HOTPATCHABLE)
|
||||
|
||||
target_link_libraries(shell32
|
||||
atlnew
|
||||
|
|
|
@ -2025,7 +2025,10 @@ HINSTANCE WINAPI ShellExecuteA(HWND hWnd, LPCSTR lpOperation, LPCSTR lpFile,
|
|||
* ShellExecuteExA [SHELL32.292]
|
||||
*
|
||||
*/
|
||||
BOOL WINAPI ShellExecuteExA(LPSHELLEXECUTEINFOA sei)
|
||||
BOOL
|
||||
WINAPI
|
||||
DECLSPEC_HOTPATCH
|
||||
ShellExecuteExA(LPSHELLEXECUTEINFOA sei)
|
||||
{
|
||||
SHELLEXECUTEINFOW seiW;
|
||||
BOOL ret;
|
||||
|
@ -2072,7 +2075,10 @@ BOOL WINAPI ShellExecuteExA(LPSHELLEXECUTEINFOA sei)
|
|||
* ShellExecuteExW [SHELL32.293]
|
||||
*
|
||||
*/
|
||||
BOOL WINAPI ShellExecuteExW(LPSHELLEXECUTEINFOW sei)
|
||||
BOOL
|
||||
WINAPI
|
||||
DECLSPEC_HOTPATCH
|
||||
ShellExecuteExW(LPSHELLEXECUTEINFOW sei)
|
||||
{
|
||||
return SHELL_execute(sei, SHELL_ExecuteW);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue