MCPcopy Create free account
hub / github.com/Mixaill/FakePDB / Function

Class Function

src_cpp/include/data/function.h:15–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13
14namespace 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected