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
cd1a09be
Commit
cd1a09be
authored
Apr 22, 2020
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 23, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Define RTL_BALANCED_NODE.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
22315440
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
4 deletions
+44
-4
ntdef.h
include/ntdef.h
+33
-0
windef.h
include/windef.h
+11
-4
No files found.
include/ntdef.h
View file @
cd1a09be
...
...
@@ -19,6 +19,8 @@
#ifndef _NTDEF_
#define _NTDEF_
#include <basetsd.h>
#ifdef __cplusplus
extern
"C"
{
#endif
...
...
@@ -48,4 +50,35 @@ typedef enum _WAIT_TYPE {
#define NT_WARNING(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0x80000000)
#define NT_ERROR(status) ((((NTSTATUS)(status)) & 0xc0000000) == 0xc0000000)
#define BASETYPES
typedef
unsigned
char
UCHAR
,
*
PUCHAR
;
typedef
unsigned
short
USHORT
,
*
PUSHORT
;
#ifdef _MSC_VER
typedef
unsigned
long
ULONG
,
*
PULONG
;
#else
typedef
unsigned
int
ULONG
,
*
PULONG
;
#endif
typedef
struct
_RTL_BALANCED_NODE
{
union
{
struct
_RTL_BALANCED_NODE
*
Children
[
2
];
struct
{
struct
_RTL_BALANCED_NODE
*
Left
;
struct
_RTL_BALANCED_NODE
*
Right
;
}
DUMMYSTRUCTNAME
;
}
DUMMYUNIONNAME
;
union
{
UCHAR
Red
:
1
;
UCHAR
Balance
:
2
;
ULONG_PTR
ParentValue
;
}
DUMMYUNIONNAME2
;
}
RTL_BALANCED_NODE
,
*
PRTL_BALANCED_NODE
;
#define RTL_BALANCED_NODE_RESERVED_PARENT_MASK 3
#endif
/* _NTDEF_ */
include/windef.h
View file @
cd1a09be
...
...
@@ -239,13 +239,22 @@ extern "C" {
/* Standard data types */
#ifndef BASETYPES
#define BASETYPES
typedef
unsigned
char
UCHAR
,
*
PUCHAR
;
typedef
unsigned
short
USHORT
,
*
PUSHORT
;
#ifdef _MSC_VER
typedef
unsigned
long
ULONG
,
*
PULONG
;
#else
typedef
unsigned
int
ULONG
,
*
PULONG
;
#endif
#endif
typedef
void
*
LPVOID
;
typedef
const
void
*
LPCVOID
;
typedef
int
BOOL
,
*
PBOOL
,
*
LPBOOL
;
typedef
unsigned
char
BYTE
,
*
PBYTE
,
*
LPBYTE
;
typedef
unsigned
char
UCHAR
,
*
PUCHAR
;
typedef
unsigned
short
WORD
,
*
PWORD
,
*
LPWORD
;
typedef
unsigned
short
USHORT
,
*
PUSHORT
;
typedef
int
INT
,
*
PINT
,
*
LPINT
;
typedef
unsigned
int
UINT
,
*
PUINT
;
typedef
float
FLOAT
,
*
PFLOAT
;
...
...
@@ -253,11 +262,9 @@ typedef char *PSZ;
#ifdef _MSC_VER
typedef
long
*
LPLONG
;
typedef
unsigned
long
DWORD
,
*
PDWORD
,
*
LPDWORD
;
typedef
unsigned
long
ULONG
,
*
PULONG
;
#else
typedef
int
*
LPLONG
;
typedef
unsigned
int
DWORD
,
*
PDWORD
,
*
LPDWORD
;
typedef
unsigned
int
ULONG
,
*
PULONG
;
#endif
/* Macros to map Winelib names to the correct implementation name */
...
...
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