interface
| 6088 | |
| 6089 | // interface |
| 6090 | asITypeInfo *asCScriptEngine::GetFuncdefByIndex(asUINT index) const |
| 6091 | { |
| 6092 | if( index >= registeredFuncDefs.GetLength() ) |
| 6093 | return 0; |
| 6094 | |
| 6095 | return registeredFuncDefs[index]; |
| 6096 | } |
| 6097 | |
| 6098 | // internal |
| 6099 | asCFuncdefType *asCScriptEngine::FindMatchingFuncdef(asCScriptFunction *func, asCModule *module) |