VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Graphics/Wine/include/psapi.h@ 19678

Last change on this file since 19678 was 19678, checked in by vboxsync, 16 years ago

opengl: update wine to 1.1.21, add d3d9.dll to build list

  • Property svn:eol-style set to native
File size: 4.9 KB
Line 
1/*
2 * Declarations for PSAPI
3 *
4 * Copyright (C) 1998 Patrik Stridvall
5 *
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.
10 *
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.
15 *
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
19 */
20
21/*
22 * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
23 * other than GPL or LGPL is available it will apply instead, Sun elects to use only
24 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
25 * a choice of LGPL license versions is made available with the language indicating
26 * that LGPLv2 or any later version may be used, or where a choice of which version
27 * of the LGPL is applied is otherwise unspecified.
28 */
29
30#ifndef __WINE_PSAPI_H
31#define __WINE_PSAPI_H
32
33typedef struct _MODULEINFO {
34 LPVOID lpBaseOfDll;
35 DWORD SizeOfImage;
36 LPVOID EntryPoint;
37} MODULEINFO, *LPMODULEINFO;
38
39typedef struct _PROCESS_MEMORY_COUNTERS {
40 DWORD cb;
41 DWORD PageFaultCount;
42 SIZE_T PeakWorkingSetSize;
43 SIZE_T WorkingSetSize;
44 SIZE_T QuotaPeakPagedPoolUsage;
45 SIZE_T QuotaPagedPoolUsage;
46 SIZE_T QuotaPeakNonPagedPoolUsage;
47 SIZE_T QuotaNonPagedPoolUsage;
48 SIZE_T PagefileUsage;
49 SIZE_T PeakPagefileUsage;
50} PROCESS_MEMORY_COUNTERS;
51typedef PROCESS_MEMORY_COUNTERS *PPROCESS_MEMORY_COUNTERS;
52
53typedef struct _PSAPI_WS_WATCH_INFORMATION {
54 LPVOID FaultingPc;
55 LPVOID FaultingVa;
56} PSAPI_WS_WATCH_INFORMATION, *PPSAPI_WS_WATCH_INFORMATION;
57
58typedef struct _PERFORMANCE_INFORMATION {
59 DWORD cb;
60 SIZE_T CommitTotal;
61 SIZE_T CommitLimit;
62 SIZE_T CommitPeak;
63 SIZE_T PhysicalTotal;
64 SIZE_T PhysicalAvailable;
65 SIZE_T SystemCache;
66 SIZE_T KernelTotal;
67 SIZE_T KernelPaged;
68 SIZE_T KernelNonpaged;
69 SIZE_T PageSize;
70 DWORD HandleCount;
71 DWORD ProcessCount;
72 DWORD ThreadCount;
73} PERFORMANCE_INFORMATION, *PPERFORMANCE_INFORMATION;
74
75typedef struct _ENUM_PAGE_FILE_INFORMATION {
76 DWORD cb;
77 DWORD Reserved;
78 SIZE_T TotalSize;
79 SIZE_T TotalInUse;
80 SIZE_T PeakUsage;
81} ENUM_PAGE_FILE_INFORMATION, *PENUM_PAGE_FILE_INFORMATION;
82
83typedef BOOL (*PENUM_PAGE_FILE_CALLBACKA) (LPVOID, PENUM_PAGE_FILE_INFORMATION, LPCSTR);
84typedef BOOL (*PENUM_PAGE_FILE_CALLBACKW) (LPVOID, PENUM_PAGE_FILE_INFORMATION, LPCWSTR);
85#define PENUM_PAGE_FILE_CALLBACK WINELIB_NAME_AW(PENUM_PAGE_FILE_CALLBACK)
86
87#ifdef __cplusplus
88extern "C" {
89#endif
90
91BOOL WINAPI EnumProcesses(DWORD*, DWORD, DWORD*);
92BOOL WINAPI EnumProcessModules(HANDLE, HMODULE*, DWORD, LPDWORD);
93DWORD WINAPI GetModuleBaseNameA(HANDLE, HMODULE, LPSTR, DWORD);
94DWORD WINAPI GetModuleBaseNameW(HANDLE, HMODULE, LPWSTR, DWORD);
95#define GetModuleBaseName WINELIB_NAME_AW(GetModuleBaseName)
96DWORD WINAPI GetModuleFileNameExA(HANDLE, HMODULE, LPSTR, DWORD);
97DWORD WINAPI GetModuleFileNameExW(HANDLE, HMODULE, LPWSTR, DWORD);
98#define GetModuleFileNameEx WINELIB_NAME_AW(GetModuleFileNameEx)
99BOOL WINAPI GetModuleInformation(HANDLE, HMODULE, LPMODULEINFO, DWORD);
100BOOL WINAPI EmptyWorkingSet(HANDLE);
101BOOL WINAPI QueryWorkingSet(HANDLE, PVOID, DWORD);
102BOOL WINAPI QueryWorkingSetEx(HANDLE, PVOID, DWORD);
103BOOL WINAPI InitializeProcessForWsWatch(HANDLE);
104BOOL WINAPI GetWsChanges(HANDLE, PPSAPI_WS_WATCH_INFORMATION, DWORD);
105DWORD WINAPI GetMappedFileNameW(HANDLE, LPVOID, LPWSTR, DWORD);
106DWORD WINAPI GetMappedFileNameA(HANDLE, LPVOID, LPSTR, DWORD);
107#define GetMappedFileName WINELIB_NAME_AW(GetMappedFileName)
108BOOL WINAPI EnumDeviceDrivers(LPVOID*, DWORD, LPDWORD);
109DWORD WINAPI GetDeviceDriverBaseNameA(LPVOID, LPSTR, DWORD);
110DWORD WINAPI GetDeviceDriverBaseNameW(LPVOID, LPWSTR, DWORD);
111#define GetDeviceDriverBaseName WINELIB_NAME_AW(GetDeviceDriverBaseName)
112DWORD WINAPI GetDeviceDriverFileNameA(LPVOID, LPSTR, DWORD);
113DWORD WINAPI GetDeviceDriverFileNameW(LPVOID, LPWSTR, DWORD);
114#define GetDeviceDriverFileName WINELIB_NAME_AW(GetDeviceDriverFileName)
115BOOL WINAPI GetProcessMemoryInfo(HANDLE, PPROCESS_MEMORY_COUNTERS, DWORD);
116BOOL WINAPI GetPerformanceInfo(PPERFORMANCE_INFORMATION, DWORD);
117BOOL WINAPI EnumPageFilesA(PENUM_PAGE_FILE_CALLBACKA, LPVOID);
118BOOL WINAPI EnumPageFilesW(PENUM_PAGE_FILE_CALLBACKW, LPVOID);
119#define EnumPageFiles WINELIB_NAME_AW(EnumPageFiles)
120DWORD WINAPI GetProcessImageFileNameA(HANDLE, LPSTR, DWORD);
121DWORD WINAPI GetProcessImageFileNameW(HANDLE, LPWSTR, DWORD);
122#define GetProcessImageFileName WINELIB_NAME_AW(GetProcessImageFileName)
123
124#ifdef __cplusplus
125}
126#endif
127
128#endif /* __WINE_PSAPI_H */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette