| 49 | } |
| 50 | |
| 51 | ProcAddress AbstractFunction::address() const |
| 52 | { |
| 53 | if (!state().isInitialized()) |
| 54 | { |
| 55 | const_cast<AbstractFunction*>(this)->resolveAddress(); |
| 56 | } |
| 57 | |
| 58 | return state().address(); |
| 59 | } |
| 60 | |
| 61 | bool AbstractFunction::isEnabled(const CallbackMask mask) const |
| 62 | { |
nothing calls this directly
no test coverage detected