Commit b3123fac authored by Chris Morgan's avatar Chris Morgan Committed by Alexandre Julliard

Stub NetGetDCName(). Add in the rest of the NERR_* defines.

parent a542770c
...@@ -426,3 +426,18 @@ NetQueryDisplayInformation( ...@@ -426,3 +426,18 @@ NetQueryDisplayInformation(
} }
return NERR_Success; return NERR_Success;
} }
/************************************************************
* NetGetDCName (NETAPI32.@)
*
* Return the name of the primary domain controller (PDC)
*/
NET_API_STATUS WINAPI
NetGetDCName(LPWSTR servername, LPWSTR domainname, LPBYTE bufptr)
{
FIXME("stub!\n");
return NERR_DCNotFound; /* say we can't find a domain controller */
}
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
@ stub NetFileEnum @ stub NetFileEnum
@ stub NetFileGetInfo @ stub NetFileGetInfo
@ stub NetGetAnyDCName @ stub NetGetAnyDCName
@ stub NetGetDCName @ stdcall NetGetDCName(wstr wstr ptr) NetGetDCName
@ stub NetGetDisplayInformationIndex @ stub NetGetDisplayInformationIndex
@ stub NetGroupAdd @ stub NetGroupAdd
@ stub NetGroupAddUser @ stub NetGroupAddUser
......
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