[pkg-wine-party] [wine] 69/164: ntdsapi: Add stubs for DsBindA/W.

Michael Gilbert mgilbert at moszumanska.debian.org
Sun Oct 19 19:58:24 UTC 2014


This is an automated email from the git hooks/post-receive script.

mgilbert pushed a commit to branch master
in repository wine.

commit 35b90ece93aeaec2affc571b1420a9ec569125f4
Author: Austin English <austinenglish at gmail.com>
Date:   Tue Oct 7 11:46:05 2014 -0500

    ntdsapi: Add stubs for DsBindA/W.
---
 dlls/ntdsapi/ntdsapi.c    | 18 ++++++++++++++++++
 dlls/ntdsapi/ntdsapi.spec |  4 ++--
 2 files changed, 20 insertions(+), 2 deletions(-)

diff --git a/dlls/ntdsapi/ntdsapi.c b/dlls/ntdsapi/ntdsapi.c
index 1ffbd9d..4ca3b09 100644
--- a/dlls/ntdsapi/ntdsapi.c
+++ b/dlls/ntdsapi/ntdsapi.c
@@ -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,
diff --git a/dlls/ntdsapi/ntdsapi.spec b/dlls/ntdsapi/ntdsapi.spec
index f4ae6f8..b3ed8be 100644
--- a/dlls/ntdsapi/ntdsapi.spec
+++ b/dlls/ntdsapi/ntdsapi.spec
@@ -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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-wine/wine.git



More information about the pkg-wine-party mailing list