Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/build/exception-handling-x64.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,8 @@ typedef enum _UNWIND_OP_CODES {
UWOP_PUSH_MACHFRAME /* info == 0: no error-code, 1: error-code */
} UNWIND_CODE_OPS;

typedef unsigned char UBYTE;

typedef union _UNWIND_CODE {
struct {
UBYTE CodeOffset;
Expand Down Expand Up @@ -488,7 +490,7 @@ typedef struct _RUNTIME_FUNCTION {
((PRUNTIME_FUNCTION)((base) + *(PULONG)GetLanguageSpecificDataPtr(info)))

#define GetExceptionDataPtr(info) \
((PVOID)((PULONG)GetLanguageSpecificData(info) + 1)
((PVOID)((PULONG)GetLanguageSpecificData(info) + 1))
```

## See also
Expand Down