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
23bd3bc2
Commit
23bd3bc2
authored
Feb 16, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdsapi: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6a213b1c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
dlls/ntdsapi/Makefile.in
+0
-1
ntdsapi.c
dlls/ntdsapi/ntdsapi.c
+2
-2
No files found.
dlls/ntdsapi/Makefile.in
View file @
23bd3bc2
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
ntdsapi.dll
IMPORTLIB
=
ntdsapi
IMPORTS
=
user32
...
...
dlls/ntdsapi/ntdsapi.c
View file @
23bd3bc2
...
...
@@ -218,7 +218,7 @@ DWORD WINAPI DsClientMakeSpnForTargetServerW(LPCWSTR class, LPCWSTR name, DWORD
DWORD
WINAPI
DsCrackNamesA
(
HANDLE
handle
,
DS_NAME_FLAGS
flags
,
DS_NAME_FORMAT
offered
,
DS_NAME_FORMAT
desired
,
DWORD
num
,
const
CHAR
**
names
,
PDS_NAME_RESULTA
*
result
)
{
FIXME
(
"(%p %u %u %u %u %p %p stub
\n
"
,
handle
,
flags
,
offered
,
desired
,
num
,
names
,
result
);
FIXME
(
"(%p %u %u %u %
l
u %p %p stub
\n
"
,
handle
,
flags
,
offered
,
desired
,
num
,
names
,
result
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
...
...
@@ -228,6 +228,6 @@ DWORD WINAPI DsCrackNamesA(HANDLE handle, DS_NAME_FLAGS flags, DS_NAME_FORMAT of
DWORD
WINAPI
DsCrackNamesW
(
HANDLE
handle
,
DS_NAME_FLAGS
flags
,
DS_NAME_FORMAT
offered
,
DS_NAME_FORMAT
desired
,
DWORD
num
,
const
WCHAR
**
names
,
PDS_NAME_RESULTW
*
result
)
{
FIXME
(
"(%p %u %u %u %u %p %p stub
\n
"
,
handle
,
flags
,
offered
,
desired
,
num
,
names
,
result
);
FIXME
(
"(%p %u %u %u %
l
u %p %p stub
\n
"
,
handle
,
flags
,
offered
,
desired
,
num
,
names
,
result
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
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