Commit 395ba3b9 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

shell32: Add a stub implementation for OpenAs_RunDLL.

parent 480faefe
...@@ -299,9 +299,9 @@ ...@@ -299,9 +299,9 @@
@ stub InternalExtractIconListA @ stub InternalExtractIconListA
@ stub InternalExtractIconListW @ stub InternalExtractIconListW
@ stub OCInstall @ stub OCInstall
@ stub OpenAs_RunDLL @ stdcall OpenAs_RunDLL(long long str long) OpenAs_RunDLLA
@ stub OpenAs_RunDLLA @ stdcall OpenAs_RunDLLA(long long str long)
@ stub OpenAs_RunDLLW @ stdcall OpenAs_RunDLLW(long long wstr long)
@ stub PrintersGetCommand_RunDLL @ stub PrintersGetCommand_RunDLL
@ stub PrintersGetCommand_RunDLLA @ stub PrintersGetCommand_RunDLLA
@ stub PrintersGetCommand_RunDLLW @ stub PrintersGetCommand_RunDLLW
......
...@@ -1762,3 +1762,19 @@ HINSTANCE WINAPI ShellExecuteW(HWND hwnd, LPCWSTR lpOperation, LPCWSTR lpFile, ...@@ -1762,3 +1762,19 @@ HINSTANCE WINAPI ShellExecuteW(HWND hwnd, LPCWSTR lpOperation, LPCWSTR lpFile,
SHELL_execute( &sei, SHELL_ExecuteW ); SHELL_execute( &sei, SHELL_ExecuteW );
return sei.hInstApp; return sei.hInstApp;
} }
/*************************************************************************
* OpenAs_RunDLLA [SHELL32.@]
*/
void WINAPI OpenAs_RunDLLA(HWND hwnd, HINSTANCE hinst, LPCSTR cmdline, int cmdshow)
{
FIXME("%p, %p, %s, %d\n", hwnd, hinst, debugstr_a(cmdline), cmdshow);
}
/*************************************************************************
* OpenAs_RunDLLW [SHELL32.@]
*/
void WINAPI OpenAs_RunDLLW(HWND hwnd, HINSTANCE hinst, LPCWSTR cmdline, int cmdshow)
{
FIXME("%p, %p, %s, %d\n", hwnd, hinst, debugstr_w(cmdline), cmdshow);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment