From 7306f3b6f50cd3fe71f7e133f922cd53284d232b Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Wed, 27 May 2015 02:40:20 +0000 Subject: [PATCH] Object/COFF: Add coff_import_header. This type is described in the PE/COFF spec section 7.1. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238275 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Object/COFF.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/include/llvm/Object/COFF.h b/include/llvm/Object/COFF.h index b28cec48644..606b80f1056 100644 --- a/include/llvm/Object/COFF.h +++ b/include/llvm/Object/COFF.h @@ -449,6 +449,17 @@ struct coff_aux_clr_token { support::ulittle32_t SymbolTableIndex; }; +struct coff_import_header { + support::ulittle16_t Sig1; + support::ulittle16_t Sig2; + support::ulittle16_t Version; + support::ulittle16_t Machine; + support::ulittle32_t TimeDateStamp; + support::ulittle32_t SizeOfData; + support::ulittle16_t OrdinalHint; + support::ulittle16_t TypeInfo; +}; + struct coff_import_directory_table_entry { support::ulittle32_t ImportLookupTableRVA; support::ulittle32_t TimeDateStamp;