PeDebugDirectory.cs 569 字节
Newer Older
P
Pilchie 已提交
1 2
// Copyright (c) Microsoft Open Technologies, Inc.  All Rights Reserved.  Licensed under the Apache License, Version 2.0.  See License.txt in the project root for license information.

3
namespace Microsoft.Cci
P
Pilchie 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17
{
    internal class PeDebugDirectory
    {
        public uint Characteristics;
        public uint TimeDateStamp;
        public ushort MajorVersion;
        public ushort MinorVersion;
        public uint Type;
        public uint SizeOfData;
        public uint AddressOfRawData;
        public uint PointerToRawData;
        public byte[] Data;
    }
}