summaryrefslogtreecommitdiff
path: root/source3/lib/netapi/file.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2008-09-09 19:43:02 +0200
committerGünther Deschner <gd@samba.org>2008-09-11 14:36:55 +0200
commitf2381acf5a69df049dd897d40f9eb7490b33fd00 (patch)
tree5a0e0d1d0805b09ad16ac602b06eb06fbc1bd1d8 /source3/lib/netapi/file.c
parent5986c6730592cc9c007338be8524f74d62467da6 (diff)
downloadsamba-f2381acf5a69df049dd897d40f9eb7490b33fd00.tar.gz
samba-f2381acf5a69df049dd897d40f9eb7490b33fd00.tar.bz2
samba-f2381acf5a69df049dd897d40f9eb7490b33fd00.zip
netapi: add NetFileGetInfo skeleton.
Guenther (This used to be commit 6c61c2e35e60a7b1398533311dab5eee38eb3b09)
Diffstat (limited to 'source3/lib/netapi/file.c')
-rw-r--r--source3/lib/netapi/file.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/source3/lib/netapi/file.c b/source3/lib/netapi/file.c
index c0edb8e062..021e4c2938 100644
--- a/source3/lib/netapi/file.c
+++ b/source3/lib/netapi/file.c
@@ -67,3 +67,21 @@ WERROR NetFileClose_l(struct libnetapi_ctx *ctx,
{
LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetFileClose);
}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetFileGetInfo_r(struct libnetapi_ctx *ctx,
+ struct NetFileGetInfo *r)
+{
+ return WERR_NOT_SUPPORTED;
+}
+
+/****************************************************************
+****************************************************************/
+
+WERROR NetFileGetInfo_l(struct libnetapi_ctx *ctx,
+ struct NetFileGetInfo *r)
+{
+ LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetFileGetInfo);
+}