Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
76e258cb
Commit
76e258cb
authored
Feb 09, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 12, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add prototypes to winnt.h for the SList functions.
parent
102ae714
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
7 deletions
+15
-7
rtl.c
dlls/ntdll/rtl.c
+7
-7
winnt.h
include/winnt.h
+8
-0
No files found.
dlls/ntdll/rtl.c
View file @
76e258cb
...
@@ -927,7 +927,7 @@ PVOID WINAPI RtlDecodePointer( PVOID ptr )
...
@@ -927,7 +927,7 @@ PVOID WINAPI RtlDecodePointer( PVOID ptr )
return
(
PVOID
)(
ptrval
^
get_pointer_obfuscator
());
return
(
PVOID
)(
ptrval
^
get_pointer_obfuscator
());
}
}
VOID
WINAPI
RtlInitializeSListHead
(
volatile
PSLIST_HEADER
ListHeader
)
VOID
WINAPI
RtlInitializeSListHead
(
PSLIST_HEADER
ListHeader
)
{
{
TRACE
(
"(%p)
\n
"
,
ListHeader
);
TRACE
(
"(%p)
\n
"
,
ListHeader
);
#ifdef _WIN64
#ifdef _WIN64
...
@@ -937,7 +937,7 @@ VOID WINAPI RtlInitializeSListHead(volatile PSLIST_HEADER ListHeader)
...
@@ -937,7 +937,7 @@ VOID WINAPI RtlInitializeSListHead(volatile PSLIST_HEADER ListHeader)
#endif
#endif
}
}
USHORT
WINAPI
RtlQueryDepthSList
(
volatile
PSLIST_HEADER
ListHeader
)
WORD
WINAPI
RtlQueryDepthSList
(
PSLIST_HEADER
ListHeader
)
{
{
TRACE
(
"(%p)
\n
"
,
ListHeader
);
TRACE
(
"(%p)
\n
"
,
ListHeader
);
#ifdef _WIN64
#ifdef _WIN64
...
@@ -948,7 +948,7 @@ USHORT WINAPI RtlQueryDepthSList(volatile PSLIST_HEADER ListHeader)
...
@@ -948,7 +948,7 @@ USHORT WINAPI RtlQueryDepthSList(volatile PSLIST_HEADER ListHeader)
#endif
#endif
}
}
PSLIST_ENTRY
WINAPI
RtlFirstEntrySList
(
volatile
PSLIST_HEADER
ListHeader
)
PSLIST_ENTRY
WINAPI
RtlFirstEntrySList
(
const
SLIST_HEADER
*
ListHeader
)
{
{
TRACE
(
"(%p)
\n
"
,
ListHeader
);
TRACE
(
"(%p)
\n
"
,
ListHeader
);
#ifdef _WIN64
#ifdef _WIN64
...
@@ -959,7 +959,7 @@ PSLIST_ENTRY WINAPI RtlFirstEntrySList(volatile PSLIST_HEADER ListHeader)
...
@@ -959,7 +959,7 @@ PSLIST_ENTRY WINAPI RtlFirstEntrySList(volatile PSLIST_HEADER ListHeader)
#endif
#endif
}
}
PSLIST_ENTRY
WINAPI
RtlInterlockedFlushSList
(
volatile
PSLIST_HEADER
ListHeader
)
PSLIST_ENTRY
WINAPI
RtlInterlockedFlushSList
(
PSLIST_HEADER
ListHeader
)
{
{
SLIST_HEADER
oldHeader
,
newHeader
;
SLIST_HEADER
oldHeader
,
newHeader
;
TRACE
(
"(%p)
\n
"
,
ListHeader
);
TRACE
(
"(%p)
\n
"
,
ListHeader
);
...
@@ -981,7 +981,7 @@ PSLIST_ENTRY WINAPI RtlInterlockedFlushSList(volatile PSLIST_HEADER ListHeader)
...
@@ -981,7 +981,7 @@ PSLIST_ENTRY WINAPI RtlInterlockedFlushSList(volatile PSLIST_HEADER ListHeader)
#endif
#endif
}
}
PSLIST_ENTRY
WINAPI
RtlInterlockedPushEntrySList
(
volatile
PSLIST_HEADER
ListHeader
,
PSLIST_ENTRY
WINAPI
RtlInterlockedPushEntrySList
(
PSLIST_HEADER
ListHeader
,
PSLIST_ENTRY
ListEntry
)
PSLIST_ENTRY
ListEntry
)
{
{
SLIST_HEADER
oldHeader
,
newHeader
;
SLIST_HEADER
oldHeader
,
newHeader
;
...
@@ -1004,7 +1004,7 @@ PSLIST_ENTRY WINAPI RtlInterlockedPushEntrySList(volatile PSLIST_HEADER ListHead
...
@@ -1004,7 +1004,7 @@ PSLIST_ENTRY WINAPI RtlInterlockedPushEntrySList(volatile PSLIST_HEADER ListHead
#endif
#endif
}
}
PSLIST_ENTRY
WINAPI
RtlInterlockedPopEntrySList
(
volatile
PSLIST_HEADER
ListHeader
)
PSLIST_ENTRY
WINAPI
RtlInterlockedPopEntrySList
(
PSLIST_HEADER
ListHeader
)
{
{
SLIST_HEADER
oldHeader
,
newHeader
;
SLIST_HEADER
oldHeader
,
newHeader
;
PSLIST_ENTRY
entry
;
PSLIST_ENTRY
entry
;
...
@@ -1040,7 +1040,7 @@ PSLIST_ENTRY WINAPI RtlInterlockedPopEntrySList(volatile PSLIST_HEADER ListHeade
...
@@ -1040,7 +1040,7 @@ PSLIST_ENTRY WINAPI RtlInterlockedPopEntrySList(volatile PSLIST_HEADER ListHeade
/*************************************************************************
/*************************************************************************
* RtlInterlockedPushListSList [NTDLL.@]
* RtlInterlockedPushListSList [NTDLL.@]
*/
*/
PSLIST_ENTRY
WINAPI
RtlInterlockedPushListSList
(
volatile
PSLIST_HEADER
ListHeader
,
PSLIST_ENTRY
WINAPI
RtlInterlockedPushListSList
(
PSLIST_HEADER
ListHeader
,
PSLIST_ENTRY
FirstEntry
,
PSLIST_ENTRY
FirstEntry
,
PSLIST_ENTRY
LastEntry
,
PSLIST_ENTRY
LastEntry
,
ULONG
Count
)
ULONG
Count
)
...
...
include/winnt.h
View file @
76e258cb
...
@@ -647,6 +647,14 @@ typedef union _SLIST_HEADER {
...
@@ -647,6 +647,14 @@ typedef union _SLIST_HEADER {
#endif
#endif
PSLIST_ENTRY
WINAPI
RtlFirstEntrySList
(
const
SLIST_HEADER
*
);
VOID
WINAPI
RtlInitializeSListHead
(
PSLIST_HEADER
);
PSLIST_ENTRY
WINAPI
RtlInterlockedFlushSList
(
PSLIST_HEADER
);
PSLIST_ENTRY
WINAPI
RtlInterlockedPopEntrySList
(
PSLIST_HEADER
);
PSLIST_ENTRY
WINAPI
RtlInterlockedPushEntrySList
(
PSLIST_HEADER
,
PSLIST_ENTRY
);
WORD
WINAPI
RtlQueryDepthSList
(
PSLIST_HEADER
);
/* Heap flags */
/* Heap flags */
#define HEAP_NO_SERIALIZE 0x00000001
#define HEAP_NO_SERIALIZE 0x00000001
...
...
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