diff options
author | Günther Deschner <gd@samba.org> | 2008-09-09 19:43:02 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-11 14:36:55 +0200 |
commit | f2381acf5a69df049dd897d40f9eb7490b33fd00 (patch) | |
tree | 5a0e0d1d0805b09ad16ac602b06eb06fbc1bd1d8 /source3/lib/netapi/libnetapi.h | |
parent | 5986c6730592cc9c007338be8524f74d62467da6 (diff) | |
download | samba-f2381acf5a69df049dd897d40f9eb7490b33fd00.tar.gz samba-f2381acf5a69df049dd897d40f9eb7490b33fd00.tar.xz samba-f2381acf5a69df049dd897d40f9eb7490b33fd00.zip |
netapi: add NetFileGetInfo skeleton.
Guenther
(This used to be commit 6c61c2e35e60a7b1398533311dab5eee38eb3b09)
Diffstat (limited to 'source3/lib/netapi/libnetapi.h')
-rw-r--r-- | source3/lib/netapi/libnetapi.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/lib/netapi/libnetapi.h b/source3/lib/netapi/libnetapi.h index 86485636657..0d2cd3107e2 100644 --- a/source3/lib/netapi/libnetapi.h +++ b/source3/lib/netapi/libnetapi.h @@ -405,4 +405,12 @@ WERROR NetFileClose_r(struct libnetapi_ctx *ctx, struct NetFileClose *r); WERROR NetFileClose_l(struct libnetapi_ctx *ctx, struct NetFileClose *r); +NET_API_STATUS NetFileGetInfo(const char * server_name /* [in] */, + uint32_t fileid /* [in] */, + uint32_t level /* [in] */, + uint8_t **buffer /* [out] [ref] */); +WERROR NetFileGetInfo_r(struct libnetapi_ctx *ctx, + struct NetFileGetInfo *r); +WERROR NetFileGetInfo_l(struct libnetapi_ctx *ctx, + struct NetFileGetInfo *r); #endif /* __LIBNETAPI_LIBNETAPI__ */ |