Commit 23b0c321 authored by Ruslan Kabatsayev's avatar Ruslan Kabatsayev Committed by Alexandre Julliard

netapi32: Add stub for NetGetAnyDCName.

parent d8c92b62
...@@ -729,6 +729,20 @@ NetGetDCName(LPCWSTR servername, LPCWSTR domainname, LPBYTE *bufptr) ...@@ -729,6 +729,20 @@ NetGetDCName(LPCWSTR servername, LPCWSTR domainname, LPBYTE *bufptr)
} }
/************************************************************ /************************************************************
* NetGetAnyDCName (NETAPI32.@)
*
* Return the name of any domain controller (DC) for a
* domain that is directly trusted by the specified server
*/
NET_API_STATUS WINAPI NetGetAnyDCName(LPCWSTR servername, LPCWSTR domainname, LPBYTE *bufptr)
{
FIXME("(%s, %s, %p) stub!\n", debugstr_w(servername),
debugstr_w(domainname), bufptr);
return ERROR_NO_SUCH_DOMAIN;
}
/************************************************************
* NetGroupEnum (NETAPI32.@) * NetGroupEnum (NETAPI32.@)
* *
*/ */
......
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
@ stub NetFileClose @ stub NetFileClose
@ stdcall NetFileEnum(wstr wstr wstr long ptr long ptr ptr ptr) @ stdcall NetFileEnum(wstr wstr wstr long ptr long ptr ptr ptr)
@ stub NetFileGetInfo @ stub NetFileGetInfo
@ stub NetGetAnyDCName @ stdcall NetGetAnyDCName(wstr wstr ptr)
@ stdcall NetGetDCName(wstr wstr ptr) @ stdcall NetGetDCName(wstr wstr ptr)
@ stub NetGetDisplayInformationIndex @ stub NetGetDisplayInformationIndex
@ stdcall NetGetJoinInformation(wstr ptr ptr) @ stdcall NetGetJoinInformation(wstr ptr ptr)
......
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