summaryrefslogtreecommitdiffstats
path: root/source/lib
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-06-06 16:44:35 +0200
committerGünther Deschner <gd@samba.org>2008-06-17 19:57:06 +0200
commit1262ab1843a8a8cb794f6bbfb113bd2d99ffba22 (patch)
treec5d62738b051e250d53cb60d9fd34e8d65971518 /source/lib
parent78bc98cb55e36ef175f9c0f6fcd943781a514005 (diff)
downloadsamba-1262ab1843a8a8cb794f6bbfb113bd2d99ffba22.tar.gz
samba-1262ab1843a8a8cb794f6bbfb113bd2d99ffba22.tar.xz
samba-1262ab1843a8a8cb794f6bbfb113bd2d99ffba22.zip
netapi: make NetRemoteTOD() headers public.
Guenther
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/netapi/netapi.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/source/lib/netapi/netapi.h b/source/lib/netapi/netapi.h
index d80e78ebbf8..d24e15901bd 100644
--- a/source/lib/netapi/netapi.h
+++ b/source/lib/netapi/netapi.h
@@ -157,6 +157,21 @@ struct LOCALGROUP_INFO_1002 {
const char * lgrpi1002_comment;
};
+struct TIME_OF_DAY_INFO {
+ uint32_t tod_elapsedt;
+ uint32_t tod_msecs;
+ uint32_t tod_hours;
+ uint32_t tod_mins;
+ uint32_t tod_secs;
+ uint32_t tod_hunds;
+ int32_t tod_timezone;
+ uint32_t tod_tinterval;
+ uint32_t tod_day;
+ uint32_t tod_month;
+ uint32_t tod_year;
+ uint32_t tod_weekday;
+};
+
#endif /* _HEADER_libnetapi */
/****************************************************************
@@ -710,4 +725,20 @@ NET_API_STATUS NetLocalGroupSetInfo(const char * server_name /* [in] */,
uint8_t *buf /* [in] [ref] */,
uint32_t *parm_err /* [out] [ref] */);
+/************************************************************//**
+ *
+ * NetRemoteTOD
+ *
+ * @brief Query remote Time of Day
+ *
+ * @param[in] server_name The server name to connect to
+ * @param[out] buf The buffer containing a TIME_OF_DAY_INFO structure
+ * @return NET_API_STATUS
+ *
+ * example server/remote_tod.c
+ ***************************************************************/
+
+NET_API_STATUS NetRemoteTOD(const char * server_name /* [in] */,
+ uint8_t **buf /* [out] [ref] */);
+
#endif