Skip to content

Commit

Permalink
Minor fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
castano committed Aug 24, 2020
1 parent 47e80e9 commit 631e627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ic_pfor.h
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ typedef BOOL (WINAPI *LPFN_GSI)(LPSYSTEM_INFO);
typedef BOOL (WINAPI *LPFN_ISWOW64PROCESS) (HANDLE, PBOOL);

static bool isWow64() {
LPFN_ISWOW64PROCESS fnIsWow64Process = (LPFN_ISWOW64PROCESS)GetProcAddress(GetModuleHandle("kernel32"), "IsWow64Process");
LPFN_ISWOW64PROCESS fnIsWow64Process = (LPFN_ISWOW64PROCESS)GetProcAddress(GetModuleHandle(TEXT("kernel32")), "IsWow64Process");

BOOL wow64 = FALSE;

Expand Down

0 comments on commit 631e627

Please sign in to comment.