| 77 | } |
| 78 | |
| 79 | type ImageOptionalHeader64 struct { |
| 80 | Magic uint16 |
| 81 | MajorLinkerVersion byte |
| 82 | MinorLinkerVersion byte |
| 83 | SizeOfCode uint32 |
| 84 | SizeOfInitializedData uint32 |
| 85 | SizeOfUninitializedData uint32 |
| 86 | AddressOfEntryPoint uint32 |
| 87 | BaseOfCode uint32 |
| 88 | ImageBase uint64 |
| 89 | SectionAlignment uint32 |
| 90 | FileAlignment uint32 |
| 91 | MajorOperatingSystemVersion uint16 |
| 92 | MinorOperatingSystemVersion uint16 |
| 93 | MajorImageVersion uint16 |
| 94 | MinorImageVersion uint16 |
| 95 | MajorSubsystemVersion uint16 |
| 96 | MinorSubsystemVersion uint16 |
| 97 | Win32VersionValue uint32 |
| 98 | SizeOfImage uint32 |
| 99 | SizeOfHeaders uint32 |
| 100 | CheckSum uint32 |
| 101 | Subsystem uint16 |
| 102 | DllCharacteristics uint16 |
| 103 | SizeOfStackReserve uint64 |
| 104 | SizeOfStackCommit uint64 |
| 105 | SizeOfHeapReserve uint64 |
| 106 | SizeOfHeapCommit uint64 |
| 107 | LoaderFlags uint32 |
| 108 | NumberOfRvaAndSizes uint32 |
| 109 | DataDirectory uintptr |
| 110 | } |
| 111 | |
| 112 | type ImageOptionalHeader32 struct { |
| 113 | Magic uint16 |
nothing calls this directly
no outgoing calls
no test coverage detected