cguid.h, commctrl.h, commdlg.h, cpl.h, cplext.h, custcntl.h, dbt.h, dde.h, ddeml.h, dlgs.h, excpt.h, httpext.h, imagehlp.h, imm.h, initguid.h, intshcut.h, ipexport.h, iphlpapi.h, ipifcons.h, iprtrmib.h, iptypes.h, isguids.h, largeint.h, lm.h, lmaccess.h, lmalert.h, lmapibuf.h, lmat.h, lmaudit.h, lmbrowsr.h, lmchdev.h, lmconfig.h, lmcons.h, lmerr.h, lmerrlog.h, lmmsg.h, lmremutl.h, lmrepl.h, lmserver.h, lmshare.h, lmsname.h, lmstats.h, lmsvc.h, lmuse.h, lmuseflg.h, lmwksta.h, lzexpand.h, mapi.h, mciavi.h, mcx.h, mmsystem.h, mswsock.h, nb30.h, nddeapi.h, nspapi.h, ntdef.h, ntsecapi.h, ntsecpkg.h, oaidl.h, objbase.h, objfwd.h, objidl.h, odbcinst.h, ole.h, ole2.h, ole2ver.h, oleauto.h, olectl.h, olectlid.h, oledlg.h, oleidl.h, pbt.h, prsht.h, psapi.h, rapi.h, ras.h, raserror.h, rassapi.h, regstr.h, richedit.h, richole.h, rpc.h, rpcdce.h, rpcdce2.h, rpcdcep.h, rpcndr.h, rpcnsi.h, rpcnsip.h, rpcnterr.h, rpcproxy.h, schannel.h, schnlsp.h, scrnsave.h, security.h, setupapi.h, shellapi.h, shlguid.h, shlobj.h, sql.h, sqlext.h, sqltypes.h, sqlucode.h, sspi.h, subauth.h, tlhelp32.h, unknwn.h, userenv.h, w32api.h, winbase.h, wincon.h, wincrypt.h, windef.h, windows.h, windowsx.h, winerror.h, wingdi.h, wininet.h, winioctl.h, winnetwk.h, winnls.h, winnt.h, winperf.h, winreg.h, winresrc.h, winsock.h, winsock2.h, winspool.h, winsvc.h, winuser.h, winver.h, ws2tcpip.h, wsnetbs.h, wtypes.h, zmouse.h: Add #pragma GCC system_header if __GNUC__ >= 3. * include/mapi.h: Change header guard name to _MAPI_H for consistency.
		
			
				
	
	
		
			96 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			96 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
	psapi.h - Include file for PSAPI.DLL APIs
 | 
						|
 | 
						|
	Written by Mumit Khan <khan@nanotech.wisc.edu>
 | 
						|
 | 
						|
	This file is part of a free library for the Win32 API.
 | 
						|
 | 
						|
	NOTE: This strictly does not belong in the Win32 API since it's
 | 
						|
	really part of Platform SDK. However,GDB needs it and we might
 | 
						|
	as well provide it here.
 | 
						|
 | 
						|
	This library is distributed in the hope that it will be useful,
 | 
						|
	but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 | 
						|
 | 
						|
*/
 | 
						|
#ifndef _PSAPI_H
 | 
						|
#define _PSAPI_H
 | 
						|
#if __GNUC__ >=3
 | 
						|
#pragma GCC system_header
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef RC_INVOKED
 | 
						|
 | 
						|
typedef struct _MODULEINFO {
 | 
						|
	LPVOID lpBaseOfDll;
 | 
						|
	DWORD SizeOfImage;
 | 
						|
	LPVOID EntryPoint;
 | 
						|
} MODULEINFO,*LPMODULEINFO;
 | 
						|
 | 
						|
typedef struct _PSAPI_WS_WATCH_INFORMATION {
 | 
						|
	LPVOID FaultingPc;
 | 
						|
	LPVOID FaultingVa;
 | 
						|
} PSAPI_WS_WATCH_INFORMATION,*PPSAPI_WS_WATCH_INFORMATION;
 | 
						|
 | 
						|
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;
 | 
						|
} PROCESS_MEMORY_COUNTERS,*PPROCESS_MEMORY_COUNTERS;
 | 
						|
 | 
						|
/* Grouped by application,not in alphabetical order. */
 | 
						|
BOOL WINAPI EnumProcesses(DWORD *,DWORD,DWORD *);
 | 
						|
BOOL WINAPI EnumProcessModules(HANDLE,HMODULE *,DWORD,LPDWORD);
 | 
						|
DWORD WINAPI GetModuleBaseNameA(HANDLE,HMODULE,LPSTR,DWORD);
 | 
						|
DWORD WINAPI GetModuleBaseNameW(HANDLE,HMODULE,LPWSTR,DWORD);
 | 
						|
DWORD WINAPI GetModuleFileNameExA(HANDLE,HMODULE,LPSTR,DWORD);
 | 
						|
DWORD WINAPI GetModuleFileNameExW(HANDLE,HMODULE,LPWSTR,DWORD);
 | 
						|
BOOL WINAPI GetModuleInformation(HANDLE,HMODULE,LPMODULEINFO,DWORD);
 | 
						|
BOOL WINAPI EmptyWorkingSet(HANDLE);
 | 
						|
BOOL WINAPI QueryWorkingSet(HANDLE,PVOID,DWORD);
 | 
						|
BOOL WINAPI InitializeProcessForWsWatch(HANDLE);
 | 
						|
BOOL WINAPI GetWsChanges(HANDLE,PPSAPI_WS_WATCH_INFORMATION,DWORD);
 | 
						|
DWORD WINAPI GetMappedFileNameW(HANDLE,LPVOID,LPWSTR,DWORD);
 | 
						|
DWORD WINAPI GetMappedFileNameA(HANDLE,LPVOID,LPSTR,DWORD);
 | 
						|
BOOL WINAPI EnumDeviceDrivers(LPVOID *,DWORD,LPDWORD);
 | 
						|
DWORD WINAPI GetDeviceDriverBaseNameA(LPVOID,LPSTR,DWORD);
 | 
						|
DWORD WINAPI GetDeviceDriverBaseNameW(LPVOID,LPWSTR,DWORD);
 | 
						|
DWORD WINAPI GetDeviceDriverFileNameA(LPVOID,LPSTR,DWORD);
 | 
						|
DWORD WINAPI GetDeviceDriverFileNameW(LPVOID,LPWSTR,DWORD);
 | 
						|
BOOL WINAPI GetProcessMemoryInfo(HANDLE,PPROCESS_MEMORY_COUNTERS,DWORD);
 | 
						|
 | 
						|
#endif /* not RC_INVOKED */
 | 
						|
 | 
						|
#ifdef UNICODE
 | 
						|
#define GetModuleBaseName GetModuleBaseNameW
 | 
						|
#define GetModuleFileNameEx GetModuleFileNameExW
 | 
						|
#define GetMappedFilenameEx GetMappedFilenameExW
 | 
						|
#define GetDeviceDriverBaseName GetDeviceDriverBaseNameW
 | 
						|
#define GetDeviceDriverFileName GetDeviceDriverFileNameW
 | 
						|
#else
 | 
						|
#define GetModuleBaseName GetModuleBaseNameA
 | 
						|
#define GetModuleFileNameEx GetModuleFileNameExA
 | 
						|
#define GetMappedFilenameEx GetMappedFilenameExA
 | 
						|
#define GetDeviceDriverBaseName GetDeviceDriverBaseNameA
 | 
						|
#define GetDeviceDriverFileName GetDeviceDriverFileNameA
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* _PSAPI_H */
 | 
						|
 |