cosmopolitan/libc/nt/struct/imagentheaders.internal.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
416 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_IMAGENTHEADERS_H_
#define COSMOPOLITAN_LIBC_NT_STRUCT_IMAGENTHEADERS_H_
#include "libc/nt/struct/imagefileheader.internal.h"
#include "libc/nt/struct/imageoptionalheader.internal.h"
2020-06-15 14:18:57 +00:00
struct NtImageNtHeaders {
uint32_t Signature;
struct NtImageFileHeader FileHeader;
struct NtImageOptionalHeader OptionalHeader;
};
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_IMAGENTHEADERS_H_ */