ntdsapi: Add stubs for DsBindA/W.
This commit is contained in:
parent
80c3a8f8bc
commit
35b90ece93
|
@ -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.@)
|
||||
*/
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue