From: Günther Deschner Date: Fri, 6 Jun 2008 10:50:02 +0000 (+0200) Subject: netapi: add NetRemoteTOD() to IDL. X-Git-Tag: samba-3.3.0pre1~877 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8dd1a5fabffaea847a348d1467a75d005a16b0bd;p=thirdparty%2Fsamba.git netapi: add NetRemoteTOD() to IDL. Guenther --- diff --git a/source/librpc/idl/libnetapi.idl b/source/librpc/idl/libnetapi.idl index 6c525ff8c19..cbd91933e76 100644 --- a/source/librpc/idl/libnetapi.idl +++ b/source/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 + ); }