Skip to content

Commit

Permalink
xglobals: Update internal data
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Nov 21, 2024
1 parent 6c9d208 commit 41f90e3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mcfgthread/xglobals.c
Original file line number Diff line number Diff line change
Expand Up @@ -380,13 +380,15 @@ memset(void* dst, int val, size_t size)
return __MCF_mfill(dst, val, size);
}

extern const IMAGE_LOAD_CONFIG_DIRECTORY _load_config_used;
# if defined __i386__
extern const PVOID __safe_se_handler_table[];
extern const ULONG __safe_se_handler_count;
# endif

IMAGE_LOAD_CONFIG_DIRECTORY _load_config_used =
{
.Size = sizeof(IMAGE_LOAD_CONFIG_DIRECTORY),
# if defined __i386__
# if defined __i386__ && defined _MSC_VER
.SEHandlerTable = (ULONG_PTR) __safe_se_handler_table,
.SEHandlerCount = (ULONG_PTR) &__safe_se_handler_count,
# endif
Expand Down

0 comments on commit 41f90e3

Please sign in to comment.