From db1db7da92011aa66b5442808d7cb8c529c0a83e Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 6 Jun 2008 12:50:02 +0200 Subject: netapi: add NetRemoteTOD() to IDL. Guenther (This used to be commit 8dd1a5fabffaea847a348d1467a75d005a16b0bd) --- source3/librpc/idl/libnetapi.idl | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'source3/librpc/idl/libnetapi.idl') diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index 6c525ff8c1..cbd91933e7 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -289,4 +289,23 @@ interface libnetapi [out,ref] uint32 *parm_err ); + typedef struct { + uint32 tod_elapsedt; + uint32 tod_msecs; + uint32 tod_hours; + uint32 tod_mins; + uint32 tod_secs; + uint32 tod_hunds; + int32 tod_timezone; + uint32 tod_tinterval; + uint32 tod_day; + uint32 tod_month; + uint32 tod_year; + uint32 tod_weekday; + } TIME_OF_DAY_INFO; + + [nopush,nopull] NET_API_STATUS NetRemoteTOD( + [in] string server_name, + [out,ref] uint8 **buf + ); } -- cgit