summaryrefslogtreecommitdiff
path: root/source3/librpc/idl
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-06 12:50:02 +0200
committerGünther Deschner <gd@samba.org>2008-06-17 19:56:16 +0200
commitdb1db7da92011aa66b5442808d7cb8c529c0a83e (patch)
treec3f10c9ac465d606bf971eeb3a73552a63b91ca1 /source3/librpc/idl
parentfefcb70f870cae351d29a937df674db8c4ee9abe (diff)
downloadsamba-db1db7da92011aa66b5442808d7cb8c529c0a83e.tar.gz
samba-db1db7da92011aa66b5442808d7cb8c529c0a83e.tar.bz2
samba-db1db7da92011aa66b5442808d7cb8c529c0a83e.zip
netapi: add NetRemoteTOD() to IDL.
Guenther (This used to be commit 8dd1a5fabffaea847a348d1467a75d005a16b0bd)
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r--source3/librpc/idl/libnetapi.idl19
1 files changed, 19 insertions, 0 deletions
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
+ );
}