From: Robert Naumann Subject: [PATCH] [shell32] Implement SHRunControlPanel using ShellExecute (try 2) Message-Id: Date: Thu, 26 Feb 2015 16:49:13 +0100 --- dlls/shell32/shellord.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c index 914dc5a..05d7a57 100644 --- a/dlls/shell32/shellord.c +++ b/dlls/shell32/shellord.c @@ -1129,8 +1129,11 @@ HRESULT WINAPI SHWinHelp (DWORD v, DWORD w, DWORD x, DWORD z) */ BOOL WINAPI SHRunControlPanel (LPCWSTR commandLine, HWND parent) { - FIXME("(%s, %p): stub\n", debugstr_w(commandLine), parent); - return FALSE; + TRACE("%s, %p\n", debugstr_w(commandLine), parent); + if((int)ShellExecute(parent,NULL,commandLine,NULL,NULL,SW_NORMAL)>32) + return TRUE; + else + return FALSE; } static LPUNKNOWN SHELL32_IExplorerInterface=0; -- 1.9.5.msysgit.0