1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-29 15:42:04 +03:00

netapi: add NetShareEnum skeleton.

Guenther
(This used to be commit 0cc604ebc1)
This commit is contained in:
Günther Deschner
2008-08-29 18:58:32 +02:00
parent 155dc7415e
commit 927a9f2cbe
3 changed files with 81 additions and 0 deletions

View File

@ -1863,3 +1863,56 @@ NET_API_STATUS NetShareDel(const char * server_name /* [in] */,
return r.out.result;
}
/****************************************************************
NetShareEnum
****************************************************************/
NET_API_STATUS NetShareEnum(const char * server_name /* [in] */,
uint32_t level /* [in] */,
uint8_t **buffer /* [out] [ref] */,
uint32_t prefmaxlen /* [in] */,
uint32_t *entries_read /* [out] [ref] */,
uint32_t *total_entries /* [out] [ref] */,
uint32_t *resume_handle /* [in,out] [ref] */)
{
struct NetShareEnum 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.level = level;
r.in.prefmaxlen = prefmaxlen;
r.in.resume_handle = resume_handle;
/* Out parameters */
r.out.buffer = buffer;
r.out.entries_read = entries_read;
r.out.total_entries = total_entries;
r.out.resume_handle = resume_handle;
if (DEBUGLEVEL >= 10) {
NDR_PRINT_IN_DEBUG(NetShareEnum, &r);
}
if (LIBNETAPI_LOCAL_SERVER(server_name)) {
werr = NetShareEnum_l(ctx, &r);
} else {
werr = NetShareEnum_r(ctx, &r);
}
r.out.result = W_ERROR_V(werr);
if (DEBUGLEVEL >= 10) {
NDR_PRINT_OUT_DEBUG(NetShareEnum, &r);
}
return r.out.result;
}