[PATCH 0/1] MR9169: include: Add missing AddrBStore to STACKFRAME in imagehlp.h
From: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- include/imagehlp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/imagehlp.h b/include/imagehlp.h index 3c7bb90b511..9ec53ec2968 100644 --- a/include/imagehlp.h +++ b/include/imagehlp.h @@ -278,6 +278,7 @@ typedef struct _STACKFRAME { BOOL Virtual; DWORD Reserved[3]; KDHELP KdHelp; + ADDRESS AddrBStore; } STACKFRAME, *LPSTACKFRAME; typedef struct _STACKFRAME64 { -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9169
this would add the AddrBStore field to STACKFRAME when compiled for 64bit, which is not what the SDK does anyway, builtin imagehlp.h is already broken in that case (STACKFRAME should be an alias to STACKFRAME64 which it isn't) (see either SDK's imagehlp.h or Wine's dbghelp.h) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9169#note_118556
participants (3)
-
Alistair Leslie-Hughes -
Alistair Leslie-Hughes (@alesliehughes) -
eric pouech (@epo)