This got referenced after 95433fd59dc031c747fdc207c7d13408289bebb2, even if there was no definition of that type.
This unbreaks 32 bit builds that include dbghelp.h. Signed-off-by: Martin Storsjö <[email protected]> --- mingw-w64-headers/include/psdk_inc/_dbg_common.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mingw-w64-headers/include/psdk_inc/_dbg_common.h b/mingw-w64-headers/include/psdk_inc/_dbg_common.h index f72e813d1..1ab5835dd 100644 --- a/mingw-w64-headers/include/psdk_inc/_dbg_common.h +++ b/mingw-w64-headers/include/psdk_inc/_dbg_common.h @@ -545,6 +545,14 @@ GetModuleBaseRoutine,PTRANSLATE_ADDRESS_ROUTINE TranslateAddress); PCHAR FileName; DWORD Address; } IMAGEHLP_LINE,*PIMAGEHLP_LINE; + + typedef struct _IMAGEHLP_LINEW { + DWORD SizeOfStruct; + PVOID Key; + DWORD LineNumber; + PWSTR FileName; + DWORD Address; + } IMAGEHLP_LINEW,*PIMAGEHLP_LINEW; #endif typedef struct _SOURCEFILE { -- 2.34.1 _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
