| // Copyright 2016 The Go Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style | |
| // license that can be found in the LICENSE file. | |
| package pe | |
| const COFFSymbolSize = 18 | |
| type COFFSymbol struct { | |
| Name [8]uint8 | |
| Value uint32 | |
| SectionNumber int16 | |
| Type uint16 | |
| StorageClass uint8 | |
| NumberOfAuxSymbols uint8 | |
| } | |
| type Symbol struct { | |
| Name string | |
| Value uint32 | |
| SectionNumber int16 | |
| Type uint16 | |
| StorageClass uint8 | |
| } |