From cbcebf0f08395737b4d8fa8b7d1bcdc4384467d9 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 5 Sep 2008 16:51:55 +0200 Subject: netapi: add skeleton for NetUserSetGroups. Guenther (This used to be commit 165be948fab1c64526421b44b08de700849bba25) --- source3/lib/netapi/libnetapi.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'source3/lib/netapi/libnetapi.h') diff --git a/source3/lib/netapi/libnetapi.h b/source3/lib/netapi/libnetapi.h index 00ad4de479..eecbf8e4d5 100644 --- a/source3/lib/netapi/libnetapi.h +++ b/source3/lib/netapi/libnetapi.h @@ -145,6 +145,15 @@ WERROR NetUserGetGroups_r(struct libnetapi_ctx *ctx, struct NetUserGetGroups *r); WERROR NetUserGetGroups_l(struct libnetapi_ctx *ctx, struct NetUserGetGroups *r); +NET_API_STATUS NetUserSetGroups(const char * server_name /* [in] */, + const char * user_name /* [in] */, + uint32_t level /* [in] */, + uint8_t *buffer /* [in] [ref] */, + uint32_t num_entries /* [in] */); +WERROR NetUserSetGroups_r(struct libnetapi_ctx *ctx, + struct NetUserSetGroups *r); +WERROR NetUserSetGroups_l(struct libnetapi_ctx *ctx, + struct NetUserSetGroups *r); NET_API_STATUS NetUserModalsGet(const char * server_name /* [in] */, uint32_t level /* [in] */, uint8_t **buffer /* [out] [ref] */); -- cgit