From c02a8d455a9adb41fcc181a14db8947cb7dcc151 Mon Sep 17 00:00:00 2001 From: p4yl0ad <57832389+p4yl0ad@users.noreply.github.com> Date: Sun, 6 Feb 2022 16:17:59 +0000 Subject: [PATCH] Update exception-handling-x64.md --- docs/build/exception-handling-x64.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/build/exception-handling-x64.md b/docs/build/exception-handling-x64.md index 3447b9f6aff..41a6e29b6e4 100644 --- a/docs/build/exception-handling-x64.md +++ b/docs/build/exception-handling-x64.md @@ -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; @@ -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