| 199 | } |
| 200 | |
| 201 | void RegisterNativeLibrary(const char* moduleName, const Char* modulePath) |
| 202 | { |
| 203 | static void* RegisterNativeLibraryPtr = GetStaticMethodPointer(TEXT("RegisterNativeLibrary")); |
| 204 | CallStaticMethod<void, const char*, const Char*>(RegisterNativeLibraryPtr, moduleName, modulePath); |
| 205 | } |
| 206 | |
| 207 | bool InitHostfxr(); |
| 208 | void ShutdownHostfxr(); |
no test coverage detected