1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-23 20:59:10 +03:00

netapi: add NetFileEnum skeleton.

Guenther
(This used to be commit 8113249fe3)
This commit is contained in:
Günther Deschner
2008-09-09 22:01:32 +02:00
parent 96619efec3
commit 13f28b5747
3 changed files with 88 additions and 0 deletions

View File

@ -177,3 +177,21 @@ WERROR NetFileGetInfo_l(struct libnetapi_ctx *ctx,
{
LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetFileGetInfo);
}
/****************************************************************
****************************************************************/
WERROR NetFileEnum_r(struct libnetapi_ctx *ctx,
struct NetFileEnum *r)
{
return WERR_NOT_SUPPORTED;
}
/****************************************************************
****************************************************************/
WERROR NetFileEnum_l(struct libnetapi_ctx *ctx,
struct NetFileEnum *r)
{
LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetFileEnum);
}