github.com/saferwall/pe@v1.5.2/arch.go (about)

     1  // Copyright 2022 Saferwall. All rights reserved.
     2  // Use of this source code is governed by Apache v2 license
     3  // license that can be found in the LICENSE file.
     4  
     5  package pe
     6  
     7  // Architecture-specific data. This data directory is not used
     8  // (set to all zeros) for I386, IA64, or AMD64 architecture.
     9  func (pe *File) parseArchitectureDirectory(rva, size uint32) error {
    10  	return nil
    11  }