Commit ebbb8fa5 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

services: Fix GetNotifyResults() prototype.

parent 4c1791f5
......@@ -741,7 +741,7 @@ typedef [switch_type(DWORD)] union _SC_RPC_SERVICE_CONTROL_OUT_PARAMSW {
/* Function 48 */
DWORD svcctl_GetNotifyResults(
[in] SC_NOTIFY_RPC_HANDLE notify,
[out] SC_RPC_NOTIFY_PARAMS_LIST *params
[out] SC_RPC_NOTIFY_PARAMS_LIST **params
);
/* Function 49 */
......
......@@ -1573,7 +1573,7 @@ DWORD __cdecl svcctl_NotifyServiceStatusChange(
DWORD __cdecl svcctl_GetNotifyResults(
SC_NOTIFY_RPC_HANDLE notify,
SC_RPC_NOTIFY_PARAMS_LIST *params)
SC_RPC_NOTIFY_PARAMS_LIST **params)
{
WINE_FIXME("\n");
return ERROR_CALL_NOT_IMPLEMENTED;
......
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