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;
|
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.@)
|
* DsMakeSpnW (NTDSAPI.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
@ stub DsAddSidHistoryA
|
@ stub DsAddSidHistoryA
|
||||||
@ stub DsAddSidHistoryW
|
@ stub DsAddSidHistoryW
|
||||||
@ stub DsBindA
|
@ stdcall DsBindA(str str ptr)
|
||||||
@ stub DsBindW
|
@ stdcall DsBindW(wstr wstr ptr)
|
||||||
@ stub DsBindWithCredA
|
@ stub DsBindWithCredA
|
||||||
@ stub DsBindWithCredW
|
@ stub DsBindWithCredW
|
||||||
@ stub DsBindWithSpnA
|
@ stub DsBindWithSpnA
|
||||||
|
|
Loading…
Reference in New Issue