| 489 | return LoadLibraryW(p.wstring().c_str()); |
| 490 | } |
| 491 | inline void* resolve_sym(lib_handle_t h, const char* name) { |
| 492 | return reinterpret_cast<void*>(GetProcAddress(h, name)); |
| 493 | } |
| 494 | inline void close_lib(lib_handle_t h) { FreeLibrary(h); } |
| 495 | constexpr const char* kPluginExt = ".dll"; |
| 496 | #else |