MCPcopy Create free account
hub / github.com/b1tg/rust-windows-shellcode / IMAGE_DOS_HEADER

Class IMAGE_DOS_HEADER

shellcode/src/binds.rs:112–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110}
111#[repr(C)]
112pub struct IMAGE_DOS_HEADER {
113 pub e_magic: WORD,
114 pub e_cblp: WORD,
115 pub e_cp: WORD,
116 pub e_crlc: WORD,
117 pub e_cparhdr: WORD,
118 pub e_minalloc: WORD,
119 pub e_maxalloc: WORD,
120 pub e_ss: WORD,
121 pub e_sp: WORD,
122 pub e_csum: WORD,
123 pub e_ip: WORD,
124 pub e_cs: WORD,
125 pub e_lfarlc: WORD,
126 pub e_ovno: WORD,
127 pub e_res: [WORD; 4],
128 pub e_oemid: WORD,
129 pub e_oeminfo: WORD,
130 pub e_res2: [WORD; 10],
131 pub e_lfanew: LONG,
132}
133
134#[repr(C)]
135pub struct IMAGE_EXPORT_DIRECTORY {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected