[NETAPI32]
[reactos.git] / reactos / dll / win32 / netapi32 / group.c
1 /*
2 * Copyright 2002 Andriy Palamarchuk
3 *
4 * netapi32 access functions
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library 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 GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21 #include "netapi32.h"
22
23 WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
24
25 /*
26 @ stub NetGroupAdd
27 @ stub NetGroupAddUser
28 @ stub NetGroupDel
29 @ stub NetGroupDelUser
30 */
31
32 /************************************************************
33 * NetGroupEnum (NETAPI32.@)
34 *
35 */
36 NET_API_STATUS
37 WINAPI
38 NetGroupEnum(LPCWSTR servername,
39 DWORD level,
40 LPBYTE *bufptr,
41 DWORD prefmaxlen,
42 LPDWORD entriesread,
43 LPDWORD totalentries,
44 LPDWORD resume_handle)
45 {
46 FIXME("(%s, %d, %p, %d, %p, %p, %p) stub!\n", debugstr_w(servername),
47 level, bufptr, prefmaxlen, entriesread, totalentries, resume_handle);
48 return ERROR_ACCESS_DENIED;
49 }
50
51 /************************************************************
52 * NetGroupGetInfo (NETAPI32.@)
53 *
54 */
55 NET_API_STATUS
56 WINAPI
57 NetGroupGetInfo(LPCWSTR servername,
58 LPCWSTR groupname,
59 DWORD level,
60 LPBYTE *bufptr)
61 {
62 FIXME("(%s, %s, %d, %p) stub!\n", debugstr_w(servername), debugstr_w(groupname), level, bufptr);
63 return ERROR_ACCESS_DENIED;
64 }
65
66 /*
67 @ stub NetGroupGetUsers
68 @ stub NetGroupSetInfo
69 @ stub NetGroupSetUsers
70 */