From 092f92699dd142f368f9f9f45600bcb4dbbb2e3e Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 9 Sep 2008 19:30:25 +0200 Subject: netapi: add IDL for NetFileGetInfo. Guenther (This used to be commit 368b4d262a584eb0c44e19367c1f444723efce98) --- source3/librpc/idl/libnetapi.idl | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'source3/librpc/idl/libnetapi.idl') diff --git a/source3/librpc/idl/libnetapi.idl b/source3/librpc/idl/libnetapi.idl index e57e519043..6ecfdccdfd 100644 --- a/source3/librpc/idl/libnetapi.idl +++ b/source3/librpc/idl/libnetapi.idl @@ -1195,4 +1195,27 @@ interface libnetapi [in] string server_name, [in] uint32 fileid ); + + /*******************************************/ + /* NetFileGetInfo */ + /*******************************************/ + + typedef struct { + uint32 fi2_id; + } FILE_INFO_2; + + typedef struct { + uint32 fi3_id; + uint32 fi3_permissions; + uint32 fi3_num_locks; + string fi3_pathname; + string fi3_username; + } FILE_INFO_3; + + [nopush,nopull] NET_API_STATUS NetFileGetInfo( + [in] string server_name, + [in] uint32 fileid, + [in] uint32 level, + [out] uint8 **buffer + ); } -- cgit