1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

netapi: add IDL for NetFileGetInfo.

Guenther
(This used to be commit 368b4d262a)
This commit is contained in:
Günther Deschner 2008-09-09 19:30:25 +02:00
parent cb1e34745b
commit 092f92699d

View File

@ -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
);
}