Commit b9709d80 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

netapi32: Improve stub for NetUserModalsGet.

Tell the caller this host is not part of a domain.
parent d4774ba1
...@@ -554,6 +554,12 @@ NetGetDCName(LPCWSTR servername, LPCWSTR domainname, LPBYTE *bufptr) ...@@ -554,6 +554,12 @@ NetGetDCName(LPCWSTR servername, LPCWSTR domainname, LPBYTE *bufptr)
NET_API_STATUS WINAPI NetUserModalsGet(LPCWSTR szServer, DWORD level, LPBYTE *pbuffer) NET_API_STATUS WINAPI NetUserModalsGet(LPCWSTR szServer, DWORD level, LPBYTE *pbuffer)
{ {
FIXME("(%s %ld %p) stub!\n", debugstr_w(szServer), level, pbuffer); FIXME("(%s %ld %p) stub!\n", debugstr_w(szServer), level, pbuffer);
if (level == 2)
{
*pbuffer = NULL;
return NERR_Success;
}
return NERR_InternalError; return NERR_InternalError;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment