| 1399 | |
| 1400 | public: |
| 1401 | FunctionEntry(const Exports& exports, const unsigned int index) noexcept |
| 1402 | : m_exports(exports) |
| 1403 | , m_exportAddressTable(exports.tables().exportAddressTable) |
| 1404 | , m_name(exports.tables().namePointerTable) |
| 1405 | , m_nameOrdinal(exports.tables().nameOrdinalTable) |
| 1406 | , m_index(index) |
| 1407 | { |
| 1408 | } |
| 1409 | |
| 1410 | unsigned int index() const noexcept |
| 1411 | { |
nothing calls this directly
no outgoing calls
no test coverage detected