[Bug 3105] RPCRT4_NdrClientCall2 is a stub

Wine Bugs wine-bugs at winehq.org
Thu Jun 29 11:23:26 CDT 2006


http://bugs.winehq.org/show_bug.cgi?id=3105





------- Additional Comments From rob at codeweavers.com  2006-29-06 11:23 -------
spoolsv.exe is a service. First you need to add the service to the registry,
then you need to start it with StartService, like this:

    SC_HANDLE scm = OpenSCManager(NULL, NULL, SC_MANAGER_CONNECT);
    SC_HANDLE service = OpenService(scm, "SPOOLER", SERVICE_START);
    BOOL ret = StartService(service, 0, NULL);
    if (!ret)
        printf("StartService failed with error %ld\n", GetLastError());

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the wine-bugs mailing list