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