| 40 | |
| 41 | template<typename T> |
| 42 | static T _Forward(Module index, const char* funcName, T) |
| 43 | { |
| 44 | static T proc = nullptr; |
| 45 | if (proc != nullptr) return proc; |
| 46 | return proc = reinterpret_cast<T>(GetFunction(index, funcName)); |
| 47 | } |
| 48 | |
| 49 | // D3D9_DLL |
| 50 | // ============================== |
nothing calls this directly
no test coverage detected