From 3a2c748cf4626266899103aa719ea6ac2eae3a9f Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 13 May 2009 16:17:36 +0200 Subject: s3-build: re-run make samba3-idl. Guenther --- source3/librpc/gen_ndr/libnetapi.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'source3/librpc/gen_ndr/libnetapi.h') diff --git a/source3/librpc/gen_ndr/libnetapi.h b/source3/librpc/gen_ndr/libnetapi.h index 23a18331fe..55d2408248 100644 --- a/source3/librpc/gen_ndr/libnetapi.h +++ b/source3/librpc/gen_ndr/libnetapi.h @@ -2,6 +2,8 @@ #include +#include "libcli/util/ntstatus.h" + #define LIBNETAPI_LOCAL_SERVER(x) (!x || is_myname_or_ipaddr(x)) #ifndef MAXSUBAUTHS #define MAXSUBAUTHS 15 /* max sub authorities in a SID */ @@ -2069,4 +2071,32 @@ struct NetFileEnum { }; + +struct NetShutdownInit { + struct { + const char * server_name; + const char * message; + uint32_t timeout; + uint8_t force_apps; + uint8_t do_reboot; + } in; + + struct { + enum NET_API_STATUS result; + } out; + +}; + + +struct NetShutdownAbort { + struct { + const char * server_name; + } in; + + struct { + enum NET_API_STATUS result; + } out; + +}; + #endif /* _HEADER_libnetapi */ -- cgit