Commit 35b90ece authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntdsapi: Add stubs for DsBindA/W.

parent 80c3a8f8
......@@ -48,6 +48,24 @@ BOOL WINAPI DllMain(HINSTANCE hinst, DWORD reason, LPVOID reserved)
}
/***********************************************************************
* 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.@)
*/
DWORD WINAPI DsMakeSpnW(LPCWSTR svc_class, LPCWSTR svc_name,
......
@ stub DsAddSidHistoryA
@ stub DsAddSidHistoryW
@ stub DsBindA
@ stub DsBindW
@ stdcall DsBindA(str str ptr)
@ stdcall DsBindW(wstr wstr ptr)
@ stub DsBindWithCredA
@ stub DsBindWithCredW
@ stub DsBindWithSpnA
......
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