| 5735 | } |
| 5736 | |
| 5737 | void asCContext::CallLineCallback() |
| 5738 | { |
| 5739 | if( m_lineCallbackFunc.callConv < ICC_THISCALL ) |
| 5740 | m_engine->CallGlobalFunction(this, m_lineCallbackObj, &m_lineCallbackFunc, 0); |
| 5741 | else |
| 5742 | m_engine->CallObjectMethod(m_lineCallbackObj, this, &m_lineCallbackFunc, 0); |
| 5743 | } |
| 5744 | |
| 5745 | // interface |
| 5746 | int asCContext::SetExceptionCallback(const asSFuncPtr &callback, void *obj, int callConv) |
nothing calls this directly
no test coverage detected