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
d2145850
Commit
d2145850
authored
Aug 23, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Aug 23, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move LDT_ENTRY to winnt.h.
parent
926f6618
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
26 deletions
+26
-26
winbase.h
include/winbase.h
+1
-26
winnt.h
include/winnt.h
+25
-0
No files found.
include/winbase.h
View file @
d2145850
...
...
@@ -707,32 +707,7 @@ DECL_WINELIB_TYPE_AW(ENUMRESLANGPROC)
#define LOAD_LIBRARY_AS_DATAFILE 0x00000002
#define LOAD_WITH_ALTERED_SEARCH_PATH 0x00000008
/* ifdef _x86_ ... */
typedef
struct
_LDT_ENTRY
{
WORD
LimitLow
;
WORD
BaseLow
;
union
{
struct
{
BYTE
BaseMid
;
BYTE
Flags1
;
/*Declare as bytes to avoid alignment problems */
BYTE
Flags2
;
BYTE
BaseHi
;
}
Bytes
;
struct
{
unsigned
BaseMid
:
8
;
unsigned
Type
:
5
;
unsigned
Dpl
:
2
;
unsigned
Pres
:
1
;
unsigned
LimitHi
:
4
;
unsigned
Sys
:
1
;
unsigned
Reserved_0
:
1
;
unsigned
Default_Big
:
1
;
unsigned
Granularity
:
1
;
unsigned
BaseHi
:
8
;
}
Bits
;
}
HighWord
;
}
LDT_ENTRY
,
*
LPLDT_ENTRY
;
typedef
PLDT_ENTRY
LPLDT_ENTRY
;
typedef
enum
_GET_FILEEX_INFO_LEVELS
{
GetFileExInfoStandard
...
...
include/winnt.h
View file @
d2145850
...
...
@@ -678,6 +678,31 @@ typedef CONTEXT86 CONTEXT;
#endif
/* __i386__ */
typedef
struct
_LDT_ENTRY
{
WORD
LimitLow
;
WORD
BaseLow
;
union
{
struct
{
BYTE
BaseMid
;
BYTE
Flags1
;
/*Declare as bytes to avoid alignment problems */
BYTE
Flags2
;
BYTE
BaseHi
;
}
Bytes
;
struct
{
unsigned
BaseMid
:
8
;
unsigned
Type
:
5
;
unsigned
Dpl
:
2
;
unsigned
Pres
:
1
;
unsigned
LimitHi
:
4
;
unsigned
Sys
:
1
;
unsigned
Reserved_0
:
1
;
unsigned
Default_Big
:
1
;
unsigned
Granularity
:
1
;
unsigned
BaseHi
:
8
;
}
Bits
;
}
HighWord
;
}
LDT_ENTRY
,
*
PLDT_ENTRY
;
/* Alpha context definitions */
#ifdef _ALPHA_
...
...
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