diff options
Diffstat (limited to 'source4/librpc/idl/srvsvc.idl')
-rw-r--r-- | source4/librpc/idl/srvsvc.idl | 22 |
1 files changed, 21 insertions, 1 deletions
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 ); /**************************/ |