summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/libnetapi.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-09-09 19:21:48 +0200
committerGünther Deschner <gd@samba.org>2008-09-11 14:36:05 +0200
commit1aff85342792e8ce4713285be85124d975ace271 (patch)
treedea8c9be9f55a81d922e0236ec062b531a67a1c8 /source3/lib/netapi/libnetapi.c
parente6467a3e907b3bd1e3ea67a94b9c753c392f8a20 (diff)
downloadsamba-1aff85342792e8ce4713285be85124d975ace271.tar.gz
samba-1aff85342792e8ce4713285be85124d975ace271.tar.bz2
samba-1aff85342792e8ce4713285be85124d975ace271.zip
netapi: add NetFileClose skeleton.
Guenther (This used to be commit 4a006ae644bd85b670aab835dc7d90dadaec3503)
Diffstat (limited to 'source3/lib/netapi/libnetapi.c')
-rw-r--r--source3/lib/netapi/libnetapi.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/source3/lib/netapi/libnetapi.c b/source3/lib/netapi/libnetapi.c
index 639cbf9e65..d83dc28c43 100644
--- a/source3/lib/netapi/libnetapi.c
+++ b/source3/lib/netapi/libnetapi.c
@@ -2208,3 +2208,45 @@ NET_API_STATUS NetShareSetInfo(const char * server_name /* [in] */,
return r.out.result;
}
+/****************************************************************
+ NetFileClose
+****************************************************************/
+
+NET_API_STATUS NetFileClose(const char * server_name /* [in] */,
+ uint32_t fileid /* [in] */)
+{
+ struct NetFileClose r;
+ struct libnetapi_ctx *ctx = NULL;
+ NET_API_STATUS status;
+ WERROR werr;
+
+ status = libnetapi_getctx(&ctx);
+ if (status != 0) {
+ return status;
+ }
+
+ /* In parameters */
+ r.in.server_name = server_name;
+ r.in.fileid = fileid;
+
+ /* Out parameters */
+
+ if (DEBUGLEVEL >= 10) {
+ NDR_PRINT_IN_DEBUG(NetFileClose, &r);
+ }
+
+ if (LIBNETAPI_LOCAL_SERVER(server_name)) {
+ werr = NetFileClose_l(ctx, &r);
+ } else {
+ werr = NetFileClose_r(ctx, &r);
+ }
+
+ r.out.result = W_ERROR_V(werr);
+
+ if (DEBUGLEVEL >= 10) {
+ NDR_PRINT_OUT_DEBUG(NetFileClose, &r);
+ }
+
+ return r.out.result;
+}
+