netapi32: Add a stub for DsGetSiteNameA.

This commit is contained in:
Austin English 2011-06-16 12:48:59 -07:00 committed by Alexandre Julliard
parent 0d8e1951d4
commit 94ae7ebdaa
2 changed files with 8 additions and 2 deletions

View File

@ -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.@)
*

View File

@ -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)