section.go
// ImageSectionLnkMRelocOvfl indicates the section contains extended
// relocations.
ImageSectionLnkMRelocOvfl = 0x01000000
https://learn.microsoft.com/zh-cn/windows/win32/api/winnt/ns-winnt-image_section_header
Is the constant naming ImageSectionLnkMRelocOvfl = 0x01000000 correct in this code? Because what I found in Microsoft's documentation is IMAGE_SCN_LNK_NRELOC_OVFL with the value 0x01000000.
section.go
https://learn.microsoft.com/zh-cn/windows/win32/api/winnt/ns-winnt-image_section_header
Is the constant naming
ImageSectionLnkMRelocOvfl = 0x01000000correct in this code? Because what I found in Microsoft's documentation is IMAGE_SCN_LNK_NRELOC_OVFL with the value 0x01000000.