2020-06-15 07:18:57 -07:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_IMAGEIMPORTDESCRIPTOR_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_IMAGEIMPORTDESCRIPTOR_H_
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
|
|
|
|
struct NtImageImportDescriptor {
|
2023-07-24 00:49:06 -07:00
|
|
|
uint32_t ImportLookupTable;
|
2020-06-15 07:18:57 -07:00
|
|
|
uint32_t TimeDateStamp;
|
|
|
|
uint32_t ForwarderChain;
|
2023-07-24 00:49:06 -07:00
|
|
|
uint32_t DllNameRva;
|
|
|
|
uint32_t ImportAddressTable;
|
2020-06-15 07:18:57 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_IMAGEIMPORTDESCRIPTOR_H_ */
|