| 58 | } |
| 59 | |
| 60 | void* IOSModule::LoadProcedure(const char* procedureName) |
| 61 | { |
| 62 | /* Get procedure address from library module and return it as raw-pointer */ |
| 63 | auto procAddr = dlsym(handle_, procedureName); |
| 64 | return reinterpret_cast<void*>(procAddr); |
| 65 | } |
| 66 | |
| 67 | |
| 68 | } // /namespace LLGL |
no outgoing calls
no test coverage detected