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
a425bfc6
Commit
a425bfc6
authored
Jan 26, 2007
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winnt.h: Add defines for SLIST_HEADER.
parent
1ca4ddbd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
winnt.h
include/winnt.h
+29
-0
No files found.
include/winnt.h
View file @
a425bfc6
...
@@ -593,6 +593,35 @@ typedef struct _SINGLE_LIST_ENTRY {
...
@@ -593,6 +593,35 @@ typedef struct _SINGLE_LIST_ENTRY {
struct
_SINGLE_LIST_ENTRY
*
Next
;
struct
_SINGLE_LIST_ENTRY
*
Next
;
}
SINGLE_LIST_ENTRY
,
*
PSINGLE_LIST_ENTRY
;
}
SINGLE_LIST_ENTRY
,
*
PSINGLE_LIST_ENTRY
;
#ifdef _WIN64
typedef
struct
_SLIST_ENTRY
*
PSLIST_ENTRY
;
typedef
struct
_SLIST_ENTRY
{
PSLIST_ENTRY
Next
;
};
typedef
struct
_SLIST_HEADER
{
ULONGLONG
Alignment
;
ULONGLONG
Region
;
}
SLIST_HEADER
,
*
PSLIST_HEADER
;
#else
#define SLIST_ENTRY SINGLE_LIST_ENTRY
#define _SLIST_ENTRY _SINGLE_LIST_ENTRY
#define PSLIST_ENTRY PSINGLE_LIST_ENTRY
typedef
union
_SLIST_HEADER
{
ULONGLONG
Alignment
;
struct
{
SLIST_ENTRY
Next
;
WORD
Depth
;
WORD
Sequence
;
};
}
SLIST_HEADER
,
*
PSLIST_HEADER
;
#endif
/* 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