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
1289a860
Commit
1289a860
authored
Nov 29, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 29, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix RtlAssert() prototype.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6d89f58e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
rtl.c
dlls/ntdll/rtl.c
+3
-2
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
No files found.
dlls/ntdll/ntdll.spec
View file @
1289a860
...
...
@@ -448,7 +448,7 @@
@ stdcall RtlAreBitsClear(ptr long long)
@ stdcall RtlAreBitsSet(ptr long long)
# @ stub RtlAssert2
@ stdcall RtlAssert(ptr ptr long
long
)
@ stdcall RtlAssert(ptr ptr long
str
)
# @ stub RtlCancelTimer
@ stdcall -norelay RtlCaptureContext(ptr)
@ stdcall RtlCaptureStackBackTrace(long long ptr ptr)
...
...
dlls/ntdll/rtl.c
View file @
1289a860
...
...
@@ -564,9 +564,10 @@ void WINAPI RtlCopyMemory(void *dest, const void *src, SIZE_T len)
* NOTES
* Not implemented in non-debug versions.
*/
void
WINAPI
RtlAssert
(
LPVOID
x1
,
LPVOID
x2
,
DWORD
x3
,
DWORD
x4
)
void
WINAPI
RtlAssert
(
void
*
assertion
,
void
*
filename
,
ULONG
linenumber
,
char
*
message
)
{
FIXME
(
"(%p,%p,0x%08x,0x%08x),stub
\n
"
,
x1
,
x2
,
x3
,
x4
);
FIXME
(
"(%s, %s, %u, %s): stub
\n
"
,
debugstr_a
((
char
*
)
assertion
),
debugstr_a
((
char
*
)
filename
),
linenumber
,
debugstr_a
(
message
));
}
/*************************************************************************
...
...
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
1289a860
...
...
@@ -945,7 +945,7 @@
@ stdcall RtlAreAnyAccessesGranted(long long) ntdll.RtlAreAnyAccessesGranted
@ stdcall RtlAreBitsClear(ptr long long) ntdll.RtlAreBitsClear
@ stdcall RtlAreBitsSet(ptr long long) ntdll.RtlAreBitsSet
@ stdcall RtlAssert(ptr ptr long
long
) ntdll.RtlAssert
@ stdcall RtlAssert(ptr ptr long
str
) ntdll.RtlAssert
@ stdcall -norelay RtlCaptureContext(ptr) ntdll.RtlCaptureContext
@ stdcall RtlCaptureStackBackTrace(long long ptr ptr) ntdll.RtlCaptureStackBackTrace
@ stdcall RtlCharToInteger(ptr long ptr) ntdll.RtlCharToInteger
...
...
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