Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
35b90ece
Commit
35b90ece
authored
Oct 07, 2014
by
Austin English
Committed by
Alexandre Julliard
Oct 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdsapi: Add stubs for DsBindA/W.
parent
80c3a8f8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
ntdsapi.c
dlls/ntdsapi/ntdsapi.c
+18
-0
ntdsapi.spec
dlls/ntdsapi/ntdsapi.spec
+2
-2
No files found.
dlls/ntdsapi/ntdsapi.c
View file @
35b90ece
...
...
@@ -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
,
...
...
dlls/ntdsapi/ntdsapi.spec
View file @
35b90ece
@ stub DsAddSidHistoryA
@ stub DsAddSidHistoryW
@ st
ub DsBindA
@ st
ub DsBindW
@ st
dcall DsBindA(str str ptr)
@ st
dcall DsBindW(wstr wstr ptr)
@ stub DsBindWithCredA
@ stub DsBindWithCredW
@ stub DsBindWithSpnA
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment