ntdsapi: Add stubs for DsBindA/W.

This commit is contained in:
Austin English 2014-10-07 11:46:05 -05:00 committed by Alexandre Julliard
parent 80c3a8f8bc
commit 35b90ece93
2 changed files with 20 additions and 2 deletions

View file

@ -47,6 +47,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