From: Alistair Leslie-Hughes leslie_alistair@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 {
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)