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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(netbios);
26 HMODULE NETAPI32_hModule = 0;
28 BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
30 TRACE("%p,%lx,%p\n", hinstDLL, fdwReason, lpvReserved);
33 case DLL_PROCESS_ATTACH:
35 DisableThreadLibraryCalls(hinstDLL);
36 NETAPI32_hModule = hinstDLL;
41 case DLL_PROCESS_DETACH:
51 NET_API_STATUS WINAPI NetServerEnum(
63 FIXME("Stub (%p, %ld %p %ld %p %p %ld %s %p)\n",servername, level, bufptr,
64 prefmaxlen, entriesread, totalentries, servertype, debugstr_w(domain), resume_handle);
66 return ERROR_NO_BROWSER_SERVERS_FOUND;
70 /************************************************************
71 * NetStatisticsGet (NETAPI32.@)
73 NET_API_STATUS WINAPI NetStatisticsGet(LPWSTR server, LPWSTR service,
74 DWORD level, DWORD options,
77 TRACE("(%p, %p, %ld, %ld, %p)\n", server, service, level, options, bufptr);
78 return NERR_InternalError;
81 DWORD WINAPI NetpNetBiosStatusToApiStatus(DWORD nrc)
91 ret = NERR_NoNetworkResource;
94 ret = NERR_AlreadyExists;
97 ret = NERR_TooManyNames;
100 ret = NERR_DeleteLater;
103 ret = ERROR_REM_NOT_LIST;
106 ret = NERR_NameNotFound;
109 ret = ERROR_INVALID_PARAMETER;
112 ret = NERR_DuplicateName;
115 ret = ERROR_INVALID_PARAMETER;
118 ret = NERR_DuplicateName;
121 ret = NERR_NetworkError;