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
64a44a45
Commit
64a44a45
authored
May 09, 2005
by
Paul Vriens
Committed by
Alexandre Julliard
May 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove HANDLEINFO struct.
Add SYSTEM_HANDLE_INFORMATION and SYSTEM_HANDLE_ENTRY structs.
parent
d7d1101d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
11 deletions
+16
-11
winternl.h
include/winternl.h
+16
-11
No files found.
include/winternl.h
View file @
64a44a45
...
...
@@ -949,6 +949,22 @@ typedef struct {
#define CPU_FEATURE_DS 0x00020000
/* Debug Store */
#define CPU_FEATURE_HTT 0x00040000
/* Hyper Threading Technology */
/* System Information Class 0x10 */
typedef
struct
_SYSTEM_HANDLE_ENTRY
{
ULONG
OwnerPid
;
BYTE
ObjectType
;
BYTE
HandleFlags
;
USHORT
HandleValue
;
PVOID
ObjectPointer
;
ULONG
AccessMask
;
}
SYSTEM_HANDLE_ENTRY
,
*
PSYSTEM_HANDLE_ENTRY
;
typedef
struct
_SYSTEM_HANDLE_INFORMATION
{
ULONG
Count
;
SYSTEM_HANDLE_ENTRY
Handle
[
1
];
}
SYSTEM_HANDLE_INFORMATION
,
*
PSYSTEM_HANDLE_INFORMATION
;
/* System Information Class 0x15 */
typedef
struct
{
ULONG
CurrentSize
;
...
...
@@ -1005,17 +1021,6 @@ typedef struct _SYSTEM_KERNEL_DEBUGGER_INFORMATION {
BOOLEAN
DebuggerNotPresent
;
}
SYSTEM_KERNEL_DEBUGGER_INFORMATION
,
*
PSYSTEM_KERNEL_DEBUGGER_INFORMATION
;
/* System Information Class 0x10 */
typedef
struct
{
USHORT
dwPID
;
USHORT
dwCreatorBackTraceIndex
;
BYTE
bObjectType
;
BYTE
bHandleAttributes
;
USHORT
usHandleOffset
;
DWORD
dwKeObject
;
ULONG
ulGrantedAccess
;
}
HANDLEINFO
,
*
PHANDLEINFO
;
/* FIXME: SYSTEM_HANDLE_INFORMATION? */
typedef
struct
_SYSTEM_PERFORMANCE_INFORMATION
{
BYTE
Reserved1
[
312
];
}
SYSTEM_PERFORMANCE_INFORMATION
,
*
PSYSTEM_PERFORMANCE_INFORMATION
;
...
...
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