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
315599c6
Commit
315599c6
authored
Jul 12, 2011
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 21, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdsapi: Add stub for DsGetSpnA.
parent
904f4ac8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
ntdsapi.c
dlls/ntdsapi/ntdsapi.c
+15
-0
ntdsapi.spec
dlls/ntdsapi/ntdsapi.spec
+1
-1
ntdsapi.h
include/ntdsapi.h
+10
-0
No files found.
dlls/ntdsapi/ntdsapi.c
View file @
315599c6
...
...
@@ -150,3 +150,18 @@ DWORD WINAPI DsMakeSpnA(LPCSTR svc_class, LPCSTR svc_name,
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* DsMakeSpnA (NTDSAPI.@)
*/
DWORD
WINAPI
DsGetSpnA
(
DS_SPN_NAME_TYPE
ServType
,
LPCSTR
Servlass
,
LPCSTR
ServName
,
USHORT
InstPort
,
USHORT
nInstanceNames
,
LPCSTR
*
pInstanceNames
,
const
USHORT
*
pInstancePorts
,
DWORD
*
pSpn
,
LPSTR
**
pszSpn
)
{
FIXME
(
"(%d,%s,%s,%d,%d,%p,%p,%p,%p): stub!
\n
"
,
ServType
,
debugstr_a
(
Servlass
),
debugstr_a
(
ServName
),
InstPort
,
nInstanceNames
,
pInstanceNames
,
pInstancePorts
,
pSpn
,
pszSpn
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
dlls/ntdsapi/ntdsapi.spec
View file @
315599c6
...
...
@@ -29,7 +29,7 @@
@ stub DsGetDomainControllerInfoA
@ stub DsGetDomainControllerInfoW
@ stub DsGetRdnW
@ st
ub DsGetSpnA
@ st
dcall DsGetSpnA(long str str long long ptr ptr ptr ptr)
@ stub DsGetSpnW
@ stub DsInheritSecurityIdentityA
@ stub DsInheritSecurityIdentityW
...
...
include/ntdsapi.h
View file @
315599c6
...
...
@@ -29,6 +29,16 @@ DWORD WINAPI DsMakeSpnA(LPCSTR, LPCSTR, LPCSTR, USHORT, LPCSTR, DWORD*, LPSTR);
DWORD
WINAPI
DsMakeSpnW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
,
USHORT
,
LPCWSTR
,
DWORD
*
,
LPWSTR
);
#define DsMakeSpn WINELIB_NAME_AW(DsMakeSpn)
typedef
enum
{
DS_SPN_DNS_HOST
=
0
,
DS_SPN_DN_HOST
=
1
,
DS_SPN_NB_HOST
=
2
,
DS_SPN_DOMAIN
=
3
,
DS_SPN_NB_DOMAIN
=
4
,
DS_SPN_SERVICE
=
5
}
DS_SPN_NAME_TYPE
;
#ifdef __cplusplus
}
#endif
...
...
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