| 8 | }; |
| 9 | |
| 10 | struct FileSubHeaderV1 { |
| 11 | uint32_t num_sections; |
| 12 | uint32_t num_dependencies; |
| 13 | uint32_t num_imports; |
| 14 | uint32_t num_dependency_events; |
| 15 | uint32_t num_replacements; |
| 16 | uint32_t num_exports; |
| 17 | uint32_t num_callbacks; |
| 18 | uint32_t num_provided_events; |
| 19 | uint32_t num_hooks; |
| 20 | uint32_t string_data_size; |
| 21 | }; |
| 22 | |
| 23 | enum class SectionFlags : uint32_t { |
| 24 | FixedAddress = 1 << 0, |
nothing calls this directly
no outgoing calls
no test coverage detected