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
5b49e228
Commit
5b49e228
authored
Aug 31, 2011
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdsapi: Add stubs DsServerRegisterSpnA, DsServerRegisterSpnW.
parent
52fa3bf4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
2 deletions
+33
-2
ntdsapi.c
dlls/ntdsapi/ntdsapi.c
+20
-0
ntdsapi.spec
dlls/ntdsapi/ntdsapi.spec
+2
-2
ntdsapi.h
include/ntdsapi.h
+11
-0
No files found.
dlls/ntdsapi/ntdsapi.c
View file @
5b49e228
...
@@ -165,3 +165,23 @@ DWORD WINAPI DsGetSpnA(DS_SPN_NAME_TYPE ServType, LPCSTR Servlass, LPCSTR ServNa
...
@@ -165,3 +165,23 @@ DWORD WINAPI DsGetSpnA(DS_SPN_NAME_TYPE ServType, LPCSTR Servlass, LPCSTR ServNa
return
ERROR_CALL_NOT_IMPLEMENTED
;
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
}
/***********************************************************************
* DsServerRegisterSpnA (NTDSAPI.@)
*/
DWORD
WINAPI
DsServerRegisterSpnA
(
DS_SPN_WRITE_OP
operation
,
LPCSTR
ServiceClass
,
LPCSTR
UserObjectDN
)
{
FIXME
(
"(%d,%s,%s): stub!
\n
"
,
operation
,
debugstr_a
(
ServiceClass
),
debugstr_a
(
UserObjectDN
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/***********************************************************************
* DsServerRegisterSpnW (NTDSAPI.@)
*/
DWORD
WINAPI
DsServerRegisterSpnW
(
DS_SPN_WRITE_OP
operation
,
LPCWSTR
ServiceClass
,
LPCWSTR
UserObjectDN
)
{
FIXME
(
"(%d,%s,%s): stub!
\n
"
,
operation
,
debugstr_w
(
ServiceClass
),
debugstr_w
(
UserObjectDN
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
dlls/ntdsapi/ntdsapi.spec
View file @
5b49e228
...
@@ -80,8 +80,8 @@
...
@@ -80,8 +80,8 @@
@ stub DsReplicaUpdateRefsW
@ stub DsReplicaUpdateRefsW
@ stub DsReplicaVerifyObjectsA
@ stub DsReplicaVerifyObjectsA
@ stub DsReplicaVerifyObjectsW
@ stub DsReplicaVerifyObjectsW
@ st
ub DsServerRegisterSpnA
@ st
dcall DsServerRegisterSpnA(long str str)
@ st
ub DsServerRegisterSpnW
@ st
dcall DsServerRegisterSpnW(long wstr wstr)
@ stub DsUnBindA
@ stub DsUnBindA
@ stub DsUnBindW
@ stub DsUnBindW
@ stub DsUnquoteRdnValueA
@ stub DsUnquoteRdnValueA
...
...
include/ntdsapi.h
View file @
5b49e228
...
@@ -39,6 +39,17 @@ typedef enum
...
@@ -39,6 +39,17 @@ typedef enum
DS_SPN_SERVICE
=
5
DS_SPN_SERVICE
=
5
}
DS_SPN_NAME_TYPE
;
}
DS_SPN_NAME_TYPE
;
typedef
enum
{
DS_SPN_ADD_SPN_OP
=
0
,
DS_SPN_REPLACE_SPN_OP
=
1
,
DS_SPN_DELETE_SPN_OP
=
2
}
DS_SPN_WRITE_OP
;
DWORD
WINAPI
DsServerRegisterSpnA
(
DS_SPN_WRITE_OP
operation
,
LPCSTR
ServiceClass
,
LPCSTR
UserObjectDN
);
DWORD
WINAPI
DsServerRegisterSpnW
(
DS_SPN_WRITE_OP
operation
,
LPCWSTR
ServiceClass
,
LPCWSTR
UserObjectDN
);
#define DsServerRegisterSpn WINELIB_NAME_AW(DsServerRegisterSpn)
#ifdef __cplusplus
#ifdef __cplusplus
}
}
#endif
#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