Module: wine Branch: master Commit: ebbb8fa5daf4d529986f535db571d69eb584557e URL: http://source.winehq.org/git/wine.git/?a=commit;h=ebbb8fa5daf4d529986f535db5...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Thu Mar 5 10:56:53 2015 +0300
services: Fix GetNotifyResults() prototype.
---
include/wine/svcctl.idl | 2 +- programs/services/rpc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/wine/svcctl.idl b/include/wine/svcctl.idl index 4af6b9a..cadc5fd 100644 --- a/include/wine/svcctl.idl +++ b/include/wine/svcctl.idl @@ -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 */ diff --git a/programs/services/rpc.c b/programs/services/rpc.c index a3d5a24..89a8c91 100644 --- a/programs/services/rpc.c +++ b/programs/services/rpc.c @@ -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;