source: Include/api_psapi.sbp@ 1

Last change on this file since 1 was 1, checked in by (none), 17 years ago
File size: 670 bytes
Line 
1' api_psapi.sbp
2
3
4#ifndef _INC_PSAPI
5#define _INC_PSAPI
6
7
8Declare Function EnumProcesses Lib "psapi" (lpidProcess As *DWord, cb As DWord, ByRef cbNeeded As DWord) As BOOL
9Declare Function EnumProcessModules Lib "psapi" (hProcess As HANDLE, lphModule As *HMODULE, cb As DWord, ByRef cbNeeded As DWord) As BOOL
10Declare Function GetModuleBaseName Lib "psapi" Alias "GetModuleBaseNameA" (hProcess As HANDLE, hModule As HMODULE, lpBaseName As LPSTR, nSize As DWord) As DWord
11Declare Function GetModuleFileNameEx Lib "psapi" Alias "GetModuleFileNameExA" (hProcess As HANDLE, hModule As HMODULE, lpFilename As LPSTR, nSize As DWord) As DWord
12
13
14#endif '_INC_PSAPI
Note: See TracBrowser for help on using the repository browser.