From 8ab0d696c5be9602c239eeb00f5c976fe28ebc87 Mon Sep 17 00:00:00 2001
From: Günther Deschner <gd@samba.org>
Date: Tue, 9 Sep 2008 21:56:04 +0200
Subject: netapi: add NetFileGetInfo to public header.

Guenther
(This used to be commit 5dd017b33f7d4154966aa3633d3ef3c8b482ca62)
---
 source3/lib/netapi/netapi.h | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

(limited to 'source3/lib/netapi')

diff --git a/source3/lib/netapi/netapi.h b/source3/lib/netapi/netapi.h
index a95ea50a86..f29ba225ff 100644
--- a/source3/lib/netapi/netapi.h
+++ b/source3/lib/netapi/netapi.h
@@ -633,6 +633,18 @@ struct SHARE_INFO_1006 {
 	uint32_t shi1006_max_uses;
 };
 
+struct FILE_INFO_2 {
+	uint32_t fi2_id;
+};
+
+struct FILE_INFO_3 {
+	uint32_t fi3_id;
+	uint32_t fi3_permissions;
+	uint32_t fi3_num_locks;
+	const char * fi3_pathname;
+	const char * fi3_username;
+};
+
 #endif /* _HEADER_libnetapi */
 
 /****************************************************************
@@ -1770,6 +1782,26 @@ NET_API_STATUS NetShareSetInfo(const char * server_name /* [in] */,
 NET_API_STATUS NetFileClose(const char * server_name /* [in] */,
 			    uint32_t fileid /* [in] */);
 
+/************************************************************//**
+ *
+ * NetFileGetInfo
+ *
+ * @brief Close a file
+ *
+ * @param[in] server_name The server name to connect to
+ * @param[in] fileid The fileid of the file that is going to be closed
+ * @param[in] level The level of the FILE_INFO_X buffer
+ * @param[out] buffer The buffer containing a FILE_INFO_X structure
+ * @return NET_API_STATUS
+ *
+ * example file/file_getinfo.c
+ ***************************************************************/
+
+NET_API_STATUS NetFileGetInfo(const char * server_name /* [in] */,
+			      uint32_t fileid /* [in] */,
+			      uint32_t level /* [in] */,
+			      uint8_t **buffer /* [out] [ref] */);
+
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
-- 
cgit