[NTDSAPI] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=67199
This commit is contained in:
Amine Khaldi 2015-04-15 18:04:15 +00:00
parent 8a34b7d620
commit 8046f009ba
3 changed files with 21 additions and 3 deletions

View file

@ -49,6 +49,24 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD reason, LPVOID reserved)
return TRUE;
}
/***********************************************************************
* DsBindA (NTDSAPI.@)
*/
DWORD WINAPI DsBindA(LPCSTR controller, LPCSTR domain, HANDLE *handle)
{
FIXME("(%s,%s, %p): stub!\n", debugstr_a(controller), debugstr_a(domain), handle);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/***********************************************************************
* DsBindW (NTDSAPI.@)
*/
DWORD WINAPI DsBindW(LPCWSTR controller, LPCWSTR domain, HANDLE *handle)
{
FIXME("(%s,%s, %p): stub!\n", debugstr_w(controller), debugstr_w(domain), handle);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/***********************************************************************
* DsMakeSpnW (NTDSAPI.@)
*/

View file

@ -1,7 +1,7 @@
@ stub DsAddSidHistoryA
@ stub DsAddSidHistoryW
@ stub DsBindA
@ stub DsBindW
@ stdcall DsBindA(str str ptr)
@ stdcall DsBindW(wstr wstr ptr)
@ stub DsBindWithCredA
@ stub DsBindWithCredW
@ stub DsBindWithSpnA

View file

@ -140,7 +140,7 @@ reactos/dll/win32/msxml6 # Synced to Wine-1.7.27
reactos/dll/win32/nddeapi # Synced to Wine-1.7.27
reactos/dll/win32/netapi32 # Forked at Wine-1.3.34
reactos/dll/win32/npptools # Synced to Wine-1.7.27
reactos/dll/win32/ntdsapi # Synced to Wine-1.7.27
reactos/dll/win32/ntdsapi # Synced to WineStaging-1.7.37
reactos/dll/win32/ntprint # Synced to Wine-1.7.27
reactos/dll/win32/objsel # Synced to Wine-1.7.27
reactos/dll/win32/odbc32 # Synced to Wine-1.7.27. Depends on port of Linux ODBC.