Group: Process and Thread - Library: kernel32
Obtaining names and positions for shortcuts located on the Windows Desktop
How to check whether the system is 32-bit or 64-bit
BOOL WINAPI IsWow64Process(
__in HANDLE hProcess,
__out PBOOL Wow64Process
); DECLARE INTEGER IsWow64Process IN kernel32;
INTEGER hProcess,;
INTEGER @Wow64Process hProcess [in] A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right.
Wow64Process [out] A pointer to a value that is set to TRUE if the process is running under WOW64.
If the function succeeds, the return value is a nonzero value.
Home