From 0c03be55034decf38e13b988b23a38435b29ec45 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 10 Jul 2007 08:56:13 +0000 Subject: r23808: Make us a bit more C++ friendly. Thanks to Constantine Vetoshev for checking. (This used to be commit 84b8a56fe9aef1e0583cf5f5abb037199cf21fd9) --- source3/include/rpc_svcctl.h | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'source3/include/rpc_svcctl.h') diff --git a/source3/include/rpc_svcctl.h b/source3/include/rpc_svcctl.h index e212904070..1e42aef20c 100644 --- a/source3/include/rpc_svcctl.h +++ b/source3/include/rpc_svcctl.h @@ -122,15 +122,11 @@ /* utility structures for RPCs */ -typedef struct { - uint32 type; - uint32 state; - uint32 controls_accepted; - WERROR win32_exit_code; - uint32 service_exit_code; - uint32 check_point; - uint32 wait_hint; -} SERVICE_STATUS; +/* + * "struct SERVICE_STATUS" comes from librpc/gen_ndr/svcctl.h + */ + +typedef struct SERVICE_STATUS SERVICE_STATUS; typedef struct { SERVICE_STATUS status; -- cgit