services: Fix GetNotifyResults() prototype.
This commit is contained in:
parent
4c1791f53e
commit
ebbb8fa5da
|
@ -741,7 +741,7 @@ typedef [switch_type(DWORD)] union _SC_RPC_SERVICE_CONTROL_OUT_PARAMSW {
|
||||||
/* Function 48 */
|
/* Function 48 */
|
||||||
DWORD svcctl_GetNotifyResults(
|
DWORD svcctl_GetNotifyResults(
|
||||||
[in] SC_NOTIFY_RPC_HANDLE notify,
|
[in] SC_NOTIFY_RPC_HANDLE notify,
|
||||||
[out] SC_RPC_NOTIFY_PARAMS_LIST *params
|
[out] SC_RPC_NOTIFY_PARAMS_LIST **params
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Function 49 */
|
/* Function 49 */
|
||||||
|
|
|
@ -1573,7 +1573,7 @@ DWORD __cdecl svcctl_NotifyServiceStatusChange(
|
||||||
|
|
||||||
DWORD __cdecl svcctl_GetNotifyResults(
|
DWORD __cdecl svcctl_GetNotifyResults(
|
||||||
SC_NOTIFY_RPC_HANDLE notify,
|
SC_NOTIFY_RPC_HANDLE notify,
|
||||||
SC_RPC_NOTIFY_PARAMS_LIST *params)
|
SC_RPC_NOTIFY_PARAMS_LIST **params)
|
||||||
{
|
{
|
||||||
WINE_FIXME("\n");
|
WINE_FIXME("\n");
|
||||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||||
|
|
Loading…
Reference in New Issue