Skip to content

Commit

Permalink
Ver 1.1.0.0
Browse files Browse the repository at this point in the history
Additional module (TLM2) providing very detailed information about 64bit DLLs loaded.
  • Loading branch information
gtworek authored Nov 7, 2022
1 parent dec7bfc commit 2efa605
Show file tree
Hide file tree
Showing 8 changed files with 728 additions and 11 deletions.
3 changes: 2 additions & 1 deletion HNM.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ BOOL HNMMain(void)
BOOL bRes;
DWORD dwChars;

CRASHORALLOC(pwszTemp, stTempWchars * sizeof(WCHAR));
ALLOCORCRASH(pwszTemp, stTempWchars * sizeof(WCHAR));
//CRASHORALLOC(pwszData, stDataSize);
pwszData = LocalAlloc(LPTR, stDataSize);
CRASHIFNULLALLOC(pwszData);

Expand Down
Binary file modified SampleReport.txt
Binary file not shown.
3 changes: 1 addition & 2 deletions TLM.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
PWSTR pwszTlmBuf = NULL;
size_t stTlmBufSize;

//todo: IsWow64Process2 for non-win7build

//todo: IsWow64Process2 w define win7build
BOOL IsProcesWoW(HANDLE hProcess)
{
BOOL bIsWow64 = FALSE;
Expand Down
Loading

0 comments on commit 2efa605

Please sign in to comment.