Skip to content

Commit

Permalink
fix undefined UNW_FLAG_CHAININFO when x86 build
Browse files Browse the repository at this point in the history
  • Loading branch information
vi3t1 committed Dec 13, 2023
1 parent 2e37022 commit 1916935
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions core/pe.h
Original file line number Diff line number Diff line change
Expand Up @@ -638,8 +638,17 @@ typedef struct _UNWIND_INFO

#ifndef UNW_FLAG_NHANDLER
#define UNW_FLAG_NHANDLER 0
#endif

#ifndef UNW_FLAG_EHANDLER
#define UNW_FLAG_EHANDLER 1
#endif

#ifndef UNW_FLAG_UHANDLER
#define UNW_FLAG_UHANDLER 2
#endif

#ifndef UNW_FLAG_CHAININFO
#define UNW_FLAG_CHAININFO 4
#endif

Expand Down

0 comments on commit 1916935

Please sign in to comment.