Commit a0db724a authored by Paul Chitescu's avatar Paul Chitescu Committed by Alexandre Julliard

netapi: Stub for DsGetDcNameA.

parent 906ca705
...@@ -43,6 +43,16 @@ DWORD WINAPI DsGetDcNameW(LPCWSTR ComputerName, LPCWSTR AvoidDCName, ...@@ -43,6 +43,16 @@ DWORD WINAPI DsGetDcNameW(LPCWSTR ComputerName, LPCWSTR AvoidDCName,
return ERROR_CALL_NOT_IMPLEMENTED; return ERROR_CALL_NOT_IMPLEMENTED;
} }
DWORD WINAPI DsGetDcNameA(LPCSTR ComputerName, LPCSTR AvoidDCName,
GUID* DomainGuid, LPCSTR SiteName, ULONG Flags,
PDOMAIN_CONTROLLER_INFOA *DomainControllerInfo)
{
FIXME("(%s, %s, %s, %s, %08lx, %p): stub\n", debugstr_a(ComputerName),
debugstr_a(AvoidDCName), debugstr_guid(DomainGuid),
debugstr_a(SiteName), Flags, DomainControllerInfo);
return ERROR_CALL_NOT_IMPLEMENTED;
}
DWORD WINAPI DsGetSiteNameW(LPCWSTR ComputerName, LPWSTR *SiteName) DWORD WINAPI DsGetSiteNameW(LPCWSTR ComputerName, LPWSTR *SiteName)
{ {
FIXME("(%s, %p): stub\n", debugstr_w(ComputerName), SiteName); FIXME("(%s, %p): stub\n", debugstr_w(ComputerName), SiteName);
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
@ stub DsDeregisterDnsHostRecords @ stub DsDeregisterDnsHostRecords
@ stub DsEnumerateDomainTrusts @ stub DsEnumerateDomainTrusts
@ stub DsGetDcClose @ stub DsGetDcClose
@ stub DsGetDcNameA # (str str ptr str long ptr) @ stdcall DsGetDcNameA(str str ptr str long ptr)
@ stdcall DsGetDcNameW(wstr wstr ptr wstr long ptr) @ stdcall DsGetDcNameW(wstr wstr ptr wstr long ptr)
@ stub DsGetDcNext @ stub DsGetDcNext
@ stub DsGetDcOpen @ stub DsGetDcOpen
......
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