summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-09-09 21:56:04 +0200
committerGünther Deschner <gd@samba.org>2008-09-11 14:37:11 +0200
commit8ab0d696c5be9602c239eeb00f5c976fe28ebc87 (patch)
treece13240c07490ad800af966ef743c83ad1bbe144 /source3
parent93ae66e01ec9e674e2fcac2a4f8a4c48cb35c673 (diff)
downloadsamba-8ab0d696c5be9602c239eeb00f5c976fe28ebc87.tar.gz
samba-8ab0d696c5be9602c239eeb00f5c976fe28ebc87.tar.bz2
samba-8ab0d696c5be9602c239eeb00f5c976fe28ebc87.zip
netapi: add NetFileGetInfo to public header.
Guenther (This used to be commit 5dd017b33f7d4154966aa3633d3ef3c8b482ca62)
Diffstat (limited to 'source3')
-rw-r--r--source3/lib/netapi/netapi.h32
1 files changed, 32 insertions, 0 deletions
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 */