1 /* Copyright 2001 Mike McCormack
2 * Copyright 2003 Juan Lang
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "wine/debug.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(netbios);
27 static HMODULE NETAPI32_hModule;
29 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
31 TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved);
34 case DLL_PROCESS_ATTACH:
36 DisableThreadLibraryCalls(hinstDLL);
37 NETAPI32_hModule = hinstDLL;
42 case DLL_PROCESS_DETACH:
52 /************************************************************
53 * NetServerEnum (NETAPI32.@)
55 NET_API_STATUS WINAPI NetServerEnum(
67 FIXME("Stub (%s %d %p %d %p %p %d %s %p)\n", debugstr_w(servername),
68 level, bufptr, prefmaxlen, entriesread, totalentries, servertype,
69 debugstr_w(domain), resume_handle);
71 return ERROR_NO_BROWSER_SERVERS_FOUND;
74 /************************************************************
75 * NetServerEnumEx (NETAPI32.@)
77 NET_API_STATUS WINAPI NetServerEnumEx(
86 LMCSTR FirstNameToReturn)
88 FIXME("Stub (%s %d %p %d %p %p %d %s %p)\n", debugstr_w(ServerName),
89 Level, Bufptr, PrefMaxlen, EntriesRead, totalentries, servertype,
90 debugstr_w(domain), debugstr_w(FirstNameToReturn));
92 return ERROR_NO_BROWSER_SERVERS_FOUND;
95 /************************************************************
96 * NetServerGetInfo (NETAPI32.@)
98 NET_API_STATUS WINAPI NetServerGetInfo(LMSTR servername, DWORD level, LPBYTE* bufptr)
100 FIXME("stub (%p, %d, %p)\n", servername, level, bufptr);
101 return ERROR_ACCESS_DENIED;
105 /************************************************************
106 * NetStatisticsGet (NETAPI32.@)
108 NET_API_STATUS WINAPI NetStatisticsGet(LMSTR server, LMSTR service,
109 DWORD level, DWORD options,
112 TRACE("(%p, %p, %d, %d, %p)\n", server, service, level, options, bufptr);
113 return NERR_InternalError;
116 DWORD WINAPI NetpNetBiosStatusToApiStatus(DWORD nrc)
126 ret = NERR_NoNetworkResource;
129 ret = NERR_AlreadyExists;
132 ret = NERR_TooManyNames;
135 ret = NERR_DeleteLater;
138 ret = ERROR_REM_NOT_LIST;
141 ret = NERR_NameNotFound;
144 ret = ERROR_INVALID_PARAMETER;
147 ret = NERR_DuplicateName;
150 ret = ERROR_INVALID_PARAMETER;
153 ret = NERR_DuplicateName;
156 ret = NERR_NetworkError;
161 NET_API_STATUS WINAPI NetUseEnum(LMSTR server, DWORD level, LPBYTE* bufptr, DWORD prefmaxsize,
162 LPDWORD entriesread, LPDWORD totalentries, LPDWORD resumehandle)
164 FIXME("stub (%p, %d, %p, %d, %p, %p, %p)\n", server, level, bufptr, prefmaxsize,
165 entriesread, totalentries, resumehandle);
166 return ERROR_NOT_SUPPORTED;