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
b11507eb
Commit
b11507eb
authored
Jan 05, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix the PROCESS_MEMORY_COUNTERS structure definition for Win64.
parent
7181c38d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
psapi.h
include/psapi.h
+10
-10
No files found.
include/psapi.h
View file @
b11507eb
...
...
@@ -28,16 +28,16 @@ typedef struct _MODULEINFO {
}
MODULEINFO
,
*
LPMODULEINFO
;
typedef
struct
_PROCESS_MEMORY_COUNTERS
{
DWORD
cb
;
DWORD
PageFaultCount
;
DWORD
PeakWorkingSetSize
;
DWORD
WorkingSetSize
;
DWORD
QuotaPeakPagedPoolUsage
;
DWORD
QuotaPagedPoolUsage
;
DWORD
QuotaPeakNonPagedPoolUsage
;
DWORD
QuotaNonPagedPoolUsage
;
DWORD
PagefileUsage
;
DWORD
PeakPagefileUsage
;
DWORD
cb
;
DWORD
PageFaultCount
;
SIZE_T
PeakWorkingSetSize
;
SIZE_T
WorkingSetSize
;
SIZE_T
QuotaPeakPagedPoolUsage
;
SIZE_T
QuotaPagedPoolUsage
;
SIZE_T
QuotaPeakNonPagedPoolUsage
;
SIZE_T
QuotaNonPagedPoolUsage
;
SIZE_T
PagefileUsage
;
SIZE_T
PeakPagefileUsage
;
}
PROCESS_MEMORY_COUNTERS
;
typedef
PROCESS_MEMORY_COUNTERS
*
PPROCESS_MEMORY_COUNTERS
;
...
...
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