2 * Declarations for PSAPI
4 * Copyright (C) 1998 Patrik Stridvall
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WINE_PSAPI_H
22 #define __WINE_PSAPI_H
25 #define PSAPI_VERSION 2
28 typedef struct _MODULEINFO
{
32 } MODULEINFO
, *LPMODULEINFO
;
34 typedef struct _PROCESS_MEMORY_COUNTERS
{
37 SIZE_T PeakWorkingSetSize
;
38 SIZE_T WorkingSetSize
;
39 SIZE_T QuotaPeakPagedPoolUsage
;
40 SIZE_T QuotaPagedPoolUsage
;
41 SIZE_T QuotaPeakNonPagedPoolUsage
;
42 SIZE_T QuotaNonPagedPoolUsage
;
44 SIZE_T PeakPagefileUsage
;
45 } PROCESS_MEMORY_COUNTERS
;
46 typedef PROCESS_MEMORY_COUNTERS
*PPROCESS_MEMORY_COUNTERS
;
48 typedef union _PSAPI_WORKING_SET_EX_BLOCK
{
52 ULONG_PTR ShareCount
:3;
53 ULONG_PTR Win32Protection
:11;
57 ULONG_PTR LargePage
:1;
59 } PSAPI_WORKING_SET_EX_BLOCK
, *PPSAPI_WORKING_SET_EX_BLOCK
;
61 typedef struct _PSAPI_WORKING_SET_EX_INFORMATION
{
63 PSAPI_WORKING_SET_EX_BLOCK VirtualAttributes
;
64 } PSAPI_WORKING_SET_EX_INFORMATION
, *PPSAPI_WORKING_SET_EX_INFORMATION
;
66 typedef struct _PSAPI_WS_WATCH_INFORMATION
{
69 } PSAPI_WS_WATCH_INFORMATION
, *PPSAPI_WS_WATCH_INFORMATION
;
71 typedef struct _PSAPI_WS_WATCH_INFORMATION_EX
{
72 PSAPI_WS_WATCH_INFORMATION BasicInfo
;
73 ULONG_PTR FaultingThreadId
;
75 } PSAPI_WS_WATCH_INFORMATION_EX
, *PPSAPI_WS_WATCH_INFORMATION_EX
;
77 typedef struct _PERFORMANCE_INFORMATION
{
83 SIZE_T PhysicalAvailable
;
87 SIZE_T KernelNonpaged
;
92 } PERFORMANCE_INFORMATION
, *PPERFORMANCE_INFORMATION
;
94 typedef struct _ENUM_PAGE_FILE_INFORMATION
{
100 } ENUM_PAGE_FILE_INFORMATION
, *PENUM_PAGE_FILE_INFORMATION
;
102 typedef BOOL (*PENUM_PAGE_FILE_CALLBACKA
) (LPVOID
, PENUM_PAGE_FILE_INFORMATION
, LPCSTR
);
103 typedef BOOL (*PENUM_PAGE_FILE_CALLBACKW
) (LPVOID
, PENUM_PAGE_FILE_INFORMATION
, LPCWSTR
);
104 #define PENUM_PAGE_FILE_CALLBACK WINELIB_NAME_AW(PENUM_PAGE_FILE_CALLBACK)
110 #if PSAPI_VERSION > 1
111 #define EnumProcesses K32EnumProcesses
112 #define EnumProcessModules K32EnumProcessModules
113 #define EnumProcessModulesEx K32EnumProcessModulesEx
114 #define GetModuleBaseNameA K32GetModuleBaseNameA
115 #define GetModuleBaseNameW K32GetModuleBaseNameW
116 #define GetModuleFileNameExA K32GetModuleFileNameExA
117 #define GetModuleFileNameExW K32GetModuleFileNameExW
118 #define GetModuleInformation K32GetModuleInformation
119 #define EmptyWorkingSet K32EmptyWorkingSet
120 #define QueryWorkingSet K32QueryWorkingSet
121 #define QueryWorkingSetEx K32QueryWorkingSetEx
122 #define InitializeProcessForWsWatch K32InitializeProcessForWsWatch
123 #define GetWsChanges K32GetWsChanges
124 #define GetWsChangesEx K32GetWsChangesEx
125 #define GetMappedFileNameW K32GetMappedFileNameW
126 #define GetMappedFileNameA K32GetMappedFileNameA
127 #define EnumDeviceDrivers K32EnumDeviceDrivers
128 #define GetDeviceDriverBaseNameA K32GetDeviceDriverBaseNameA
129 #define GetDeviceDriverBaseNameW K32GetDeviceDriverBaseNameW
130 #define GetDeviceDriverFileNameA K32GetDeviceDriverFileNameA
131 #define GetDeviceDriverFileNameW K32GetDeviceDriverFileNameW
132 #define GetProcessMemoryInfo K32GetProcessMemoryInfo
133 #define GetPerformanceInfo K32GetPerformanceInfo
134 #define EnumPageFilesW K32EnumPageFilesW
135 #define EnumPageFilesA K32EnumPageFilesA
136 #define GetProcessImageFileNameA K32GetProcessImageFileNameA
137 #define GetProcessImageFileNameW K32GetProcessImageFileNameW
140 BOOL WINAPI
EnumProcesses(DWORD
*, DWORD
, DWORD
*);
141 BOOL WINAPI
EnumProcessModules(HANDLE
, HMODULE
*, DWORD
, LPDWORD
);
142 BOOL WINAPI
EnumProcessModulesEx(HANDLE
, HMODULE
*, DWORD
, LPDWORD
, DWORD
);
143 DWORD WINAPI
GetModuleBaseNameA(HANDLE
, HMODULE
, LPSTR
, DWORD
);
144 DWORD WINAPI
GetModuleBaseNameW(HANDLE
, HMODULE
, LPWSTR
, DWORD
);
145 #define GetModuleBaseName WINELIB_NAME_AW(GetModuleBaseName)
146 DWORD WINAPI
GetModuleFileNameExA(HANDLE
, HMODULE
, LPSTR
, DWORD
);
147 DWORD WINAPI
GetModuleFileNameExW(HANDLE
, HMODULE
, LPWSTR
, DWORD
);
148 #define GetModuleFileNameEx WINELIB_NAME_AW(GetModuleFileNameEx)
149 BOOL WINAPI
GetModuleInformation(HANDLE
, HMODULE
, LPMODULEINFO
, DWORD
);
150 BOOL WINAPI
EmptyWorkingSet(HANDLE
);
151 BOOL WINAPI
QueryWorkingSet(HANDLE
, PVOID
, DWORD
);
152 BOOL WINAPI
QueryWorkingSetEx(HANDLE
, PVOID
, DWORD
);
153 BOOL WINAPI
InitializeProcessForWsWatch(HANDLE
);
154 BOOL WINAPI
GetWsChanges(HANDLE
, PPSAPI_WS_WATCH_INFORMATION
, DWORD
);
155 BOOL WINAPI
GetWsChangesEx(HANDLE
, PSAPI_WS_WATCH_INFORMATION_EX
*, DWORD
*);
156 DWORD WINAPI
GetMappedFileNameW(HANDLE
, LPVOID
, LPWSTR
, DWORD
);
157 DWORD WINAPI
GetMappedFileNameA(HANDLE
, LPVOID
, LPSTR
, DWORD
);
158 #define GetMappedFileName WINELIB_NAME_AW(GetMappedFileName)
159 BOOL WINAPI
EnumDeviceDrivers(LPVOID
*, DWORD
, LPDWORD
);
160 DWORD WINAPI
GetDeviceDriverBaseNameA(LPVOID
, LPSTR
, DWORD
);
161 DWORD WINAPI
GetDeviceDriverBaseNameW(LPVOID
, LPWSTR
, DWORD
);
162 #define GetDeviceDriverBaseName WINELIB_NAME_AW(GetDeviceDriverBaseName)
163 DWORD WINAPI
GetDeviceDriverFileNameA(LPVOID
, LPSTR
, DWORD
);
164 DWORD WINAPI
GetDeviceDriverFileNameW(LPVOID
, LPWSTR
, DWORD
);
165 #define GetDeviceDriverFileName WINELIB_NAME_AW(GetDeviceDriverFileName)
166 BOOL WINAPI
GetProcessMemoryInfo(HANDLE
, PPROCESS_MEMORY_COUNTERS
, DWORD
);
167 BOOL WINAPI
GetPerformanceInfo(PPERFORMANCE_INFORMATION
, DWORD
);
168 BOOL WINAPI
EnumPageFilesA(PENUM_PAGE_FILE_CALLBACKA
, LPVOID
);
169 BOOL WINAPI
EnumPageFilesW(PENUM_PAGE_FILE_CALLBACKW
, LPVOID
);
170 #define EnumPageFiles WINELIB_NAME_AW(EnumPageFiles)
171 DWORD WINAPI
GetProcessImageFileNameA(HANDLE
, LPSTR
, DWORD
);
172 DWORD WINAPI
GetProcessImageFileNameW(HANDLE
, LPWSTR
, DWORD
);
173 #define GetProcessImageFileName WINELIB_NAME_AW(GetProcessImageFileName)
179 #endif /* __WINE_PSAPI_H */