interface
| 1455 | |
| 1456 | // interface |
| 1457 | const char *asCModule::GetImportedFunctionSourceModule(asUINT index) const |
| 1458 | { |
| 1459 | if( index >= m_bindInformations.GetLength() ) |
| 1460 | return 0; |
| 1461 | |
| 1462 | return m_bindInformations[index]->importFromModule.AddressOf(); |
| 1463 | } |
| 1464 | |
| 1465 | // inteface |
| 1466 | int asCModule::BindAllImportedFunctions() |