1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Fix IDL for svcctl_EnumDependentServicesW().

Guenther
(This used to be commit 46bfded43d)
This commit is contained in:
Günther Deschner 2008-03-20 01:32:20 +01:00
parent d8acf19987
commit 5a9d296f8e

View File

@ -205,10 +205,10 @@
WERROR svcctl_EnumDependentServicesW(
[in,ref] policy_handle *service,
[in] uint32 state,
[out,unique] ENUM_SERVICE_STATUS *service_status,
[in] uint32 buf_size,
[out,ref] uint32 *bytes_needed,
[out,ref] uint32 *services_returned
[out,ref,size_is(buf_size)] uint8 *service_status,
[in,range(0,0x40000)] uint32 buf_size,
[out,ref,range(0,0x40000)] uint32 *bytes_needed,
[out,ref,range(0,0x40000)] uint32 *services_returned
);
/*****************/