/* Copyright (C) 2011-2012 de4dot@gmail.com This file is part of de4dot. de4dot is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. de4dot is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with de4dot. If not, see . */ using System.IO; namespace de4dot.PE { public class Cor20Header : IFileLocation { public uint cb; public ushort majorRuntimeVersion; public ushort minorRuntimeVersion; public DataDirectory metadataDirectory; public uint flags; public uint entryPointToken; public DataDirectory resources; public DataDirectory strongNameSignature; public DataDirectory codeManagerTable; public DataDirectory vtableFixups; public DataDirectory exportAddressTableJumps; public DataDirectory managedNativeHeader; public Metadata metadata; BinaryReader reader; public uint MetadataOffset { get { return metadata.Offset; } } public uint MetadataHeaderLength { get { return metadata.HeaderLength; } } uint offset; public uint Offset { get { return offset; } } public uint Length { get { return 18 * 4; } } public Cor20Header(BinaryReader reader) { this.reader = reader; offset = (uint)reader.BaseStream.Position; cb = reader.ReadUInt32(); majorRuntimeVersion = reader.ReadUInt16(); minorRuntimeVersion = reader.ReadUInt16(); metadataDirectory.read(reader); flags = reader.ReadUInt32(); entryPointToken = reader.ReadUInt32(); resources.read(reader); strongNameSignature.read(reader); codeManagerTable.read(reader); vtableFixups.read(reader); exportAddressTableJumps.read(reader); managedNativeHeader.read(reader); } internal void initMetadataTable() { metadata = new Metadata(reader); } public MetadataTables createMetadataTables() { return new MetadataTables(reader, metadata); } } }