#
db991bc0 |
| 11-Oct-2024 |
Christoph M. Becker |
FFI: support symbol lookup without specifying lib on Windows This works similar to `dlsym(RTLD_DEFAULT, …)` with the caveat that symbols on Windows may not be unique, and are usually qua
FFI: support symbol lookup without specifying lib on Windows This works similar to `dlsym(RTLD_DEFAULT, …)` with the caveat that symbols on Windows may not be unique, and are usually qualified by the module they are exported from. That means that wrong symbols may be fetched, potentially causing serious issues; therefore this usage is not recommended for production purposes, but is a nice simplification for quick experiments and the ext/ffi test suite. Closes GH-16351.
show more ...
|