summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2007-05-31 15:43:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:01 -0500
commit87b37de8ad4e91e75530996dde0900b6e1fed622 (patch)
treef4acc974052b80a07d837f8da58106ef46e2d810
parentc5929aa82b20e8a3877e6196c17bc9118cb399b0 (diff)
downloadsamba-87b37de8ad4e91e75530996dde0900b6e1fed622.tar.gz
r23268: Rename some variables in the svcctl.idl to prevent
redeclaration compile failures in the generated client code.
-rw-r--r--source/librpc/idl/svcctl.idl12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/librpc/idl/svcctl.idl b/source/librpc/idl/svcctl.idl
index 599d961fbe1..c2ede616ee9 100644
--- a/source/librpc/idl/svcctl.idl
+++ b/source/librpc/idl/svcctl.idl
@@ -96,7 +96,7 @@
WERROR svcctl_ControlService(
[in,ref] policy_handle *handle,
[in] uint32 control,
- [out,ref] SERVICE_STATUS *status
+ [out,ref] SERVICE_STATUS *service_status
);
/*****************/
@@ -127,7 +127,7 @@
/* Function 0x06 */
WERROR svcctl_QueryServiceStatus(
[in,ref] policy_handle *handle,
- [out,ref] SERVICE_STATUS *status
+ [out,ref] SERVICE_STATUS *service_status
);
/*****************/
@@ -197,7 +197,7 @@
WERROR svcctl_EnumDependentServicesW(
[in,ref] policy_handle *service,
[in] uint32 state,
- [out] ENUM_SERVICE_STATUS *status,
+ [out] ENUM_SERVICE_STATUS *service_status,
[in] uint32 buf_size,
[out,ref] uint32 *bytes_needed,
[out,ref] uint32 *services_returned
@@ -248,7 +248,7 @@
WERROR svcctl_QueryServiceLockStatusW(
[in,ref] policy_handle *handle,
[in] uint32 buf_size,
- [out,ref] SERVICE_LOCK_STATUS *status,
+ [out,ref] SERVICE_LOCK_STATUS *lock_status,
[out,ref] uint32 *required_buf_size
);
@@ -326,7 +326,7 @@
WERROR svcctl_EnumDependentServicesA(
[in,ref] policy_handle *service,
[in] uint32 state,
- [out] ENUM_SERVICE_STATUS *status,
+ [out] ENUM_SERVICE_STATUS *service_status,
[in] uint32 buf_size,
[out,ref] uint32 *bytes_needed,
[out,ref] uint32 *services_returned
@@ -376,7 +376,7 @@
WERROR svcctl_QueryServiceLockStatusA(
[in,ref] policy_handle *handle,
[in] uint32 buf_size,
- [out,ref] SERVICE_LOCK_STATUS *status,
+ [out,ref] SERVICE_LOCK_STATUS *lock_status,
[out,ref] uint32 *required_buf_size
);