5d5f2a8c7fe288ad03b6227a3d480f5057813d12
[reactos.git] / reactos / lib / netapi32 / stubs.c
1 /*
2 * Copyright 2002 Andriy Palamarchuk
3 *
4 * Net API buffer calls
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include "config.h"
22 #include "wine/port.h"
23
24 #include <stdarg.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "lmcons.h"
29 #include "lmapibuf.h"
30 #include "lmerr.h"
31 #include "winerror.h"
32 #include "wine/debug.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(netapi32);
35
36 /************************************************************
37 * NetApiBufferFree (NETAPI32.@)
38 */
39 NET_API_STATUS WINAPI NetApiBufferFree(LPVOID Buffer)
40 {
41 FIXME("(%p)\n", Buffer);
42 return NERR_Success;
43 }
44
45 /************************************************************
46 * NetUserGetInfo (NETAPI32.@)
47 */
48 NET_API_STATUS WINAPI
49 NetUserGetInfo(LPCWSTR servername, LPCWSTR username, DWORD level,
50 LPBYTE* bufptr)
51 {
52 FIXME("(%s, %s, %ld, %p)\n", debugstr_w(servername), debugstr_w(username),
53 level, bufptr);
54 return NERR_Success;
55 }
56
57 /************************************************************
58 * NetWkstaUserGetInfo (NETAPI32.@)
59 */
60 NET_API_STATUS NetWkstaUserGetInfo(LPWSTR reserved, DWORD level,
61 LPBYTE* bufptr)
62 {
63 return NERR_Success;
64 }