| 114 | } |
| 115 | |
| 116 | HRESULT PatchNeededImports(_In_opt_ HMODULE Module, _In_ HMODULE ImportModule, _In_ PCSTR Import, _In_ PVOID Function) |
| 117 | { |
| 118 | PIMAGE_THUNK_DATA pThunk; |
| 119 | HRESULT hr = XWineGetImport(Module, ImportModule, Import, &pThunk); |
| 120 | if (FAILED(hr)) |
| 121 | return hr; |
| 122 | |
| 123 | return XWinePatchImport(Module, ImportModule, Import, Function); |
| 124 | } |
| 125 | |
| 126 | HMODULE GetRuntimeModule() |
| 127 | { |
no test coverage detected