[Bug 49745] New: SHRunControlPanel implementation

WineHQ Bugzilla wine-bugs at winehq.org
Tue Aug 25 06:45:17 CDT 2020


https://bugs.winehq.org/show_bug.cgi?id=49745

            Bug ID: 49745
           Summary: SHRunControlPanel implementation
           Product: Wine
           Version: unspecified
          Hardware: x86
                OS: Linux
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: shell32
          Assignee: wine-bugs at winehq.org
          Reporter: contact at kcsoftwares.com
      Distribution: ---

SHRunControlPanel is currently only a stub.
I propose an implementation based on ShellExecuteW : 

[Shellord.c]

BOOL WINAPI SHRunControlPanel (LPCWSTR commandLine, HWND parent)
{
    HINSTANCE hr;
    TRACE("SHRunControlPanel(%s, %p)n", debugstr_w(commandLine), parent);
    hr = ShellExecuteW(parent, NULL, commandLine, NULL, NULL, SW_NORMAL);
    return ((int)hr > 32);
}

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list