From b56fbe6d143d01d52e4029b45693d0b9ab7781c9 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 19 Jul 2004 06:14:00 +0000 Subject: r1543: add srvsvc_NetRemoteTOD idl and torture tests metze (This used to be commit 3f2b77d7ec024f54dc478522d85278ced8fce617) --- source4/librpc/idl/srvsvc.idl | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'source4/librpc/idl') diff --git a/source4/librpc/idl/srvsvc.idl b/source4/librpc/idl/srvsvc.idl index 2f1a85be50..16827bb324 100644 --- a/source4/librpc/idl/srvsvc.idl +++ b/source4/librpc/idl/srvsvc.idl @@ -1119,9 +1119,29 @@ WERROR srvsvc_NETRSERVERTRANSPORTDEL( ); +/**************************/ +/* srvsvc_NetRemoteTOD */ +/**************************/ + typedef struct { + uint32 elapsed; + uint32 msecs; + uint32 hours; + uint32 mins; + uint32 secs; + uint32 hunds; + uint32 timezone; + uint32 tinterval; + uint32 day; + uint32 month; + uint32 year; + uint32 weekday; + } srvsvc_NetRemoteTODInfo; + /******************/ /* Function: 0x1c */ - WERROR srvsvc_NET_REMOTE_TOD( + WERROR srvsvc_NetRemoteTOD( + [in] unistr *server_unc, + [out] srvsvc_NetRemoteTODInfo *info ); /**************************/ -- cgit