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 struct _PSAPI_WS_WATCH_INFORMATION
{
51 } PSAPI_WS_WATCH_INFORMATION
, *PPSAPI_WS_WATCH_INFORMATION
;
53 typedef struct _PSAPI_WS_WATCH_INFORMATION_EX
{
54 PSAPI_WS_WATCH_INFORMATION BasicInfo
;
55 ULONG_PTR FaultingThreadId
;
57 } PSAPI_WS_WATCH_INFORMATION_EX
, *PPSAPI_WS_WATCH_INFORMATION_EX
;
59 typedef struct _PERFORMANCE_INFORMATION
{
65 SIZE_T PhysicalAvailable
;
69 SIZE_T KernelNonpaged
;
74 } PERFORMANCE_INFORMATION
, *PPERFORMANCE_INFORMATION
;
76 typedef struct _ENUM_PAGE_FILE_INFORMATION
{
82 } ENUM_PAGE_FILE_INFORMATION
, *PENUM_PAGE_FILE_INFORMATION
;
84 typedef BOOL (*PENUM_PAGE_FILE_CALLBACKA
) (LPVOID
, PENUM_PAGE_FILE_INFORMATION
, LPCSTR
);
85 typedef BOOL (*PENUM_PAGE_FILE_CALLBACKW
) (LPVOID
, PENUM_PAGE_FILE_INFORMATION
, LPCWSTR
);
86 #define PENUM_PAGE_FILE_CALLBACK WINELIB_NAME_AW(PENUM_PAGE_FILE_CALLBACK)
93 #define EnumProcesses K32EnumProcesses
94 #define EnumProcessModules K32EnumProcessModules
95 #define EnumProcessModulesEx K32EnumProcessModulesEx
96 #define GetModuleBaseNameA K32GetModuleBaseNameA
97 #define GetModuleBaseNameW K32GetModuleBaseNameW
98 #define GetModuleFileNameExA K32GetModuleFileNameExA
99 #define GetModuleFileNameExW K32GetModuleFileNameExW
100 #define GetModuleInformation K32GetModuleInformation
101 #define EmptyWorkingSet K32EmptyWorkingSet
102 #define QueryWorkingSet K32QueryWorkingSet
103 #define QueryWorkingSetEx K32QueryWorkingSetEx
104 #define InitializeProcessForWsWatch K32InitializeProcessForWsWatch
105 #define GetWsChanges K32GetWsChanges
106 #define GetWsChangesEx K32GetWsChangesEx
107 #define GetMappedFileNameW K32GetMappedFileNameW
108 #define GetMappedFileNameA K32GetMappedFileNameA
109 #define EnumDeviceDrivers K32EnumDeviceDrivers
110 #define GetDeviceDriverBaseNameA K32GetDeviceDriverBaseNameA
111 #define GetDeviceDriverBaseNameW K32GetDeviceDriverBaseNameW
112 #define GetDeviceDriverFileNameA K32GetDeviceDriverFileNameA
113 #define GetDeviceDriverFileNameW K32GetDeviceDriverFileNameW
114 #define GetProcessMemoryInfo K32GetProcessMemoryInfo
115 #define GetPerformanceInfo K32GetPerformanceInfo
116 #define EnumPageFilesW K32EnumPageFilesW
117 #define EnumPageFilesA K32EnumPageFilesA
118 #define GetProcessImageFileNameA K32GetProcessImageFileNameA
119 #define GetProcessImageFileNameW K32GetProcessImageFileNameW
122 BOOL WINAPI
EnumProcesses(DWORD
*, DWORD
, DWORD
*);
123 BOOL WINAPI
EnumProcessModules(HANDLE
, HMODULE
*, DWORD
, LPDWORD
);
124 BOOL WINAPI
EnumProcessModulesEx(HANDLE
, HMODULE
*, DWORD
, LPDWORD
, DWORD
);
125 DWORD WINAPI
GetModuleBaseNameA(HANDLE
, HMODULE
, LPSTR
, DWORD
);
126 DWORD WINAPI
GetModuleBaseNameW(HANDLE
, HMODULE
, LPWSTR
, DWORD
);
127 #define GetModuleBaseName WINELIB_NAME_AW(GetModuleBaseName)
128 DWORD WINAPI
GetModuleFileNameExA(HANDLE
, HMODULE
, LPSTR
, DWORD
);
129 DWORD WINAPI
GetModuleFileNameExW(HANDLE
, HMODULE
, LPWSTR
, DWORD
);
130 #define GetModuleFileNameEx WINELIB_NAME_AW(GetModuleFileNameEx)
131 BOOL WINAPI
GetModuleInformation(HANDLE
, HMODULE
, LPMODULEINFO
, DWORD
);
132 BOOL WINAPI
EmptyWorkingSet(HANDLE
);
133 BOOL WINAPI
QueryWorkingSet(HANDLE
, PVOID
, DWORD
);
134 BOOL WINAPI
QueryWorkingSetEx(HANDLE
, PVOID
, DWORD
);
135 BOOL WINAPI
InitializeProcessForWsWatch(HANDLE
);
136 BOOL WINAPI
GetWsChanges(HANDLE
, PPSAPI_WS_WATCH_INFORMATION
, DWORD
);
137 BOOL WINAPI
GetWsChangesEx(HANDLE
, PSAPI_WS_WATCH_INFORMATION_EX
*, DWORD
*);
138 DWORD WINAPI
GetMappedFileNameW(HANDLE
, LPVOID
, LPWSTR
, DWORD
);
139 DWORD WINAPI
GetMappedFileNameA(HANDLE
, LPVOID
, LPSTR
, DWORD
);
140 #define GetMappedFileName WINELIB_NAME_AW(GetMappedFileName)
141 BOOL WINAPI
EnumDeviceDrivers(LPVOID
*, DWORD
, LPDWORD
);
142 DWORD WINAPI
GetDeviceDriverBaseNameA(LPVOID
, LPSTR
, DWORD
);
143 DWORD WINAPI
GetDeviceDriverBaseNameW(LPVOID
, LPWSTR
, DWORD
);
144 #define GetDeviceDriverBaseName WINELIB_NAME_AW(GetDeviceDriverBaseName)
145 DWORD WINAPI
GetDeviceDriverFileNameA(LPVOID
, LPSTR
, DWORD
);
146 DWORD WINAPI
GetDeviceDriverFileNameW(LPVOID
, LPWSTR
, DWORD
);
147 #define GetDeviceDriverFileName WINELIB_NAME_AW(GetDeviceDriverFileName)
148 BOOL WINAPI
GetProcessMemoryInfo(HANDLE
, PPROCESS_MEMORY_COUNTERS
, DWORD
);
149 BOOL WINAPI
GetPerformanceInfo(PPERFORMANCE_INFORMATION
, DWORD
);
150 BOOL WINAPI
EnumPageFilesA(PENUM_PAGE_FILE_CALLBACKA
, LPVOID
);
151 BOOL WINAPI
EnumPageFilesW(PENUM_PAGE_FILE_CALLBACKW
, LPVOID
);
152 #define EnumPageFiles WINELIB_NAME_AW(EnumPageFiles)
153 DWORD WINAPI
GetProcessImageFileNameA(HANDLE
, LPSTR
, DWORD
);
154 DWORD WINAPI
GetProcessImageFileNameW(HANDLE
, LPWSTR
, DWORD
);
155 #define GetProcessImageFileName WINELIB_NAME_AW(GetProcessImageFileName)
161 #endif /* __WINE_PSAPI_H */