Commit 94ae7ebd authored by Austin English's avatar Austin English Committed by Alexandre Julliard

netapi32: Add a stub for DsGetSiteNameA.

parent 0d8e1951
......@@ -58,6 +58,12 @@ DWORD WINAPI DsGetSiteNameW(LPCWSTR ComputerName, LPWSTR *SiteName)
return ERROR_CALL_NOT_IMPLEMENTED;
}
DWORD WINAPI DsGetSiteNameA(LPCSTR ComputerName, LPSTR *SiteName)
{
FIXME("(%s, %p): stub\n", debugstr_a(ComputerName), SiteName);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/************************************************************
* DsRoleFreeMemory (NETAPI32.@)
*
......
......@@ -9,8 +9,8 @@
@ stub DsGetDcOpen
@ stub DsGetDcSiteCoverage
@ stub DsGetForestTrustInformationW
@ stub DsGetSiteNameA # (str str)
@ stdcall DsGetSiteNameW(wstr wstr)
@ stdcall DsGetSiteNameA(str ptr)
@ stdcall DsGetSiteNameW(wstr ptr)
@ stub DsMergeForestTrustInformationW
@ stdcall DsRoleFreeMemory(ptr)
@ stdcall DsRoleGetPrimaryDomainInformation(wstr long 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