Added a stub for NetStatisticsGet.
diff --git a/dlls/netapi32/netapi32.c b/dlls/netapi32/netapi32.c
index 748d497..05540d0 100644
--- a/dlls/netapi32/netapi32.c
+++ b/dlls/netapi32/netapi32.c
@@ -34,7 +34,7 @@
#include "wine/debug.h"
#include "winerror.h"
#include "nb30.h"
-#include "lmcons.h"
+#include "lm.h"
#include "iphlpapi.h"
WINE_DEFAULT_DEBUG_CHANNEL(netbios);
@@ -121,7 +121,7 @@
return TRUE;
}
-BOOL WINAPI Netbios(PNCB pncb)
+UCHAR WINAPI Netbios(PNCB pncb)
{
UCHAR ret = NRC_ILLCMD;
@@ -214,3 +214,15 @@
return ERROR_NO_BROWSER_SERVERS_FOUND;
}
+
+
+/************************************************************
+ * NetStatisticsGet (NETAPI32.@)
+ */
+NET_API_STATUS WINAPI NetStatisticsGet(LPWSTR *server, LPWSTR *service,
+ DWORD level, DWORD options,
+ LPBYTE *bufptr)
+{
+ TRACE("(%p, %p, %ld, %ld, %p)\n", server, service, level, options, bufptr);
+ return NERR_InternalError;
+}