Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
hzqst committed Mar 30, 2024
1 parent a65f06f commit 7eb28b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/metahook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3402,11 +3402,11 @@ PVOID MH_GetSectionByName(PVOID ImageBase, const char *SectionName, ULONG *Secti

typedef struct walk_context_s
{
walk_context_s(PVOID a, size_t l, int d) : address(a), len(l), depth(d)
walk_context_s(void* a, size_t l, int d) : address(a), len(l), depth(d)
{

}
PVOID address;
void* address;
size_t len;
int depth;
}walk_context_t;
Expand Down

0 comments on commit 7eb28b0

Please sign in to comment.