3515d28c69145d5f13bd14ddb7b063a19338f963
[tprouty/samba.git] / source / lib / netapi / group.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  NetApi Group Support
4  *  Copyright (C) Guenther Deschner 2008
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include "includes.h"
21
22 #include "librpc/gen_ndr/libnetapi.h"
23 #include "lib/netapi/netapi.h"
24 #include "lib/netapi/netapi_private.h"
25 #include "lib/netapi/libnetapi.h"
26
27 /****************************************************************
28 ****************************************************************/
29
30
31 WERROR NetGroupAdd_r(struct libnetapi_ctx *ctx,
32                      struct NetGroupAdd *r)
33 {
34         return WERR_NOT_SUPPORTED;
35 }
36
37 WERROR NetGroupAdd_l(struct libnetapi_ctx *ctx,
38                      struct NetGroupAdd *r)
39 {
40         return WERR_NOT_SUPPORTED;
41 }
42
43 WERROR NetGroupDel_r(struct libnetapi_ctx *ctx,
44                      struct NetGroupDel *r)
45 {
46         return WERR_NOT_SUPPORTED;
47 }
48
49 WERROR NetGroupDel_l(struct libnetapi_ctx *ctx,
50                      struct NetGroupDel *r)
51 {
52         return WERR_NOT_SUPPORTED;
53 }
54