| 309 | }; |
| 310 | |
| 311 | struct SectionHeader |
| 312 | { |
| 313 | BYTE name[SIZEOF_SHORT_NAME]; |
| 314 | union { |
| 315 | DWORD physical_address; |
| 316 | DWORD virtual_size; |
| 317 | }; |
| 318 | DWORD virtual_address; |
| 319 | DWORD size_of_raw_data; |
| 320 | DWORD pointer_to_raw_data; |
| 321 | DWORD pointer_to_relocations; |
| 322 | DWORD pointer_to_line_numbers; |
| 323 | WORD number_of_relocations; |
| 324 | WORD number_of_line_numbers; |
| 325 | DWORD characteristics; |
| 326 | }; |
| 327 | |
| 328 | struct ExportDirectory |
| 329 | { |
nothing calls this directly
no outgoing calls
no test coverage detected