| 13 | |
| 14 | namespace FakePDB::Data { |
| 15 | struct Function { |
| 16 | std::string name; |
| 17 | uint32_t start_rva; |
| 18 | bool is_public; |
| 19 | bool is_autonamed; |
| 20 | std::vector<Label> labels; |
| 21 | }; |
| 22 | |
| 23 | NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(Function, start_rva, name, is_public, is_autonamed, labels) |
| 24 | } |
nothing calls this directly
no outgoing calls
no test coverage detected