| 127 | #ifdef CORAL_WINDOWS |
| 128 | template <typename TFunc> |
| 129 | TFunc LoadFunctionPtr(void* InLibraryHandle, const char* InFunctionName) |
| 130 | { |
| 131 | auto result = (TFunc)GetProcAddress((HMODULE)InLibraryHandle, InFunctionName); |
| 132 | CORAL_VERIFY(result); |
| 133 | return result; |
| 134 | } |
| 135 | #else |
| 136 | template <typename TFunc> |
| 137 | TFunc LoadFunctionPtr(void* InLibraryHandle, const char* InFunctionName) |
nothing calls this directly
no outgoing calls
no test coverage detected