From: Austin English Subject: netapi32: add a stub for DsGetSiteNameA Message-Id: Date: Mon, 6 Jun 2011 17:11:27 -0500 Brought to you by the keeping Anastasius Focht happy with stubs department :) fixes http://bugs.winehq.org/show_bug.cgi?id=27405 -- -Austin diff --git a/dlls/netapi32/ds.c b/dlls/netapi32/ds.c index 386e222..e7bbe9c 100644 --- a/dlls/netapi32/ds.c +++ b/dlls/netapi32/ds.c @@ -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.@) * diff --git a/dlls/netapi32/netapi32.spec b/dlls/netapi32/netapi32.spec index 7905504..fadbf78 100644 --- a/dlls/netapi32/netapi32.spec +++ b/dlls/netapi32/netapi32.spec @@ -9,7 +9,7 @@ @ stub DsGetDcOpen @ stub DsGetDcSiteCoverage @ stub DsGetForestTrustInformationW -@ stub DsGetSiteNameA # (str str) +@ stdcall DsGetSiteNameA(str str) @ stdcall DsGetSiteNameW(wstr wstr) @ stub DsMergeForestTrustInformationW @ stdcall DsRoleFreeMemory(ptr)