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
05c0df15
Commit
05c0df15
authored
Feb 07, 2007
by
Kevin Koltzau
Committed by
Alexandre Julliard
Feb 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix compile errors for Win64.
parent
5f8659b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
14 deletions
+20
-14
rtl.c
dlls/ntdll/rtl.c
+20
-14
No files found.
dlls/ntdll/rtl.c
View file @
05c0df15
...
...
@@ -930,8 +930,8 @@ PVOID WINAPI RtlDecodePointer( PVOID ptr )
VOID
WINAPI
RtlInitializeSListHead
(
volatile
PSLIST_HEADER
ListHeader
)
{
TRACE
(
"(%p)
\n
"
,
ListHeader
);
#if _WIN64
assert
(
0
);
#if
def
_WIN64
FIXME
(
"stub
\n
"
);
#else
ListHeader
->
Alignment
=
0
;
#endif
...
...
@@ -940,8 +940,9 @@ VOID WINAPI RtlInitializeSListHead(volatile PSLIST_HEADER ListHeader)
USHORT
WINAPI
RtlQueryDepthSList
(
volatile
PSLIST_HEADER
ListHeader
)
{
TRACE
(
"(%p)
\n
"
,
ListHeader
);
#if _WIN64
assert
(
0
);
#ifdef _WIN64
FIXME
(
"stub
\n
"
);
return
NULL
;
#else
return
ListHeader
->
Depth
;
#endif
...
...
@@ -950,8 +951,9 @@ USHORT WINAPI RtlQueryDepthSList(volatile PSLIST_HEADER ListHeader)
PSLIST_ENTRY
WINAPI
RtlFirstEntrySList
(
volatile
PSLIST_HEADER
ListHeader
)
{
TRACE
(
"(%p)
\n
"
,
ListHeader
);
#if _WIN64
assert
(
0
);
#ifdef _WIN64
FIXME
(
"stub
\n
"
);
return
NULL
;
#else
return
ListHeader
->
Next
.
Next
;
#endif
...
...
@@ -961,8 +963,9 @@ PSLIST_ENTRY WINAPI RtlInterlockedFlushSList(volatile PSLIST_HEADER ListHeader)
{
SLIST_HEADER
oldHeader
,
newHeader
;
TRACE
(
"(%p)
\n
"
,
ListHeader
);
#if _WIN64
assert
(
0
);
#ifdef _WIN64
FIXME
(
"stub
\n
"
);
return
NULL
;
#else
if
(
ListHeader
->
Depth
==
0
)
return
NULL
;
...
...
@@ -983,8 +986,9 @@ PSLIST_ENTRY WINAPI RtlInterlockedPushEntrySList(volatile PSLIST_HEADER ListHead
{
SLIST_HEADER
oldHeader
,
newHeader
;
TRACE
(
"(%p, %p)
\n
"
,
ListHeader
,
ListEntry
);
#if _WIN64
assert
(
0
);
#ifdef _WIN64
FIXME
(
"stub
\n
"
);
return
NULL
;
#else
newHeader
.
Next
.
Next
=
ListEntry
;
do
...
...
@@ -1005,8 +1009,9 @@ PSLIST_ENTRY WINAPI RtlInterlockedPopEntrySList(volatile PSLIST_HEADER ListHeade
SLIST_HEADER
oldHeader
,
newHeader
;
PSLIST_ENTRY
entry
;
TRACE
(
"(%p)
\n
"
,
ListHeader
);
#if _WIN64
assert
(
0
);
#ifdef _WIN64
FIXME
(
"stub
\n
"
);
return
NULL
;
#else
do
{
...
...
@@ -1042,8 +1047,9 @@ PSLIST_ENTRY WINAPI RtlInterlockedPushListSList(volatile PSLIST_HEADER ListHeade
{
SLIST_HEADER
oldHeader
,
newHeader
;
TRACE
(
"(%p, %p, %p, %d)
\n
"
,
ListHeader
,
FirstEntry
,
LastEntry
,
Count
);
#if _WIN64
assert
(
0
);
#ifdef _WIN64
FIXME
(
"stub
\n
"
);
return
NULL
;
#else
newHeader
.
Next
.
Next
=
FirstEntry
;
do
...
...
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