ocaml / flexdll

a dlopen-like API for Windows
Other
98 stars 30 forks source link

flexdll_dlopen needs Unicode-aware version on Windows #33

Closed nojb closed 6 years ago

nojb commented 7 years ago

flexdll_dlopen receives a char * argument (library filename) that gets passed to LoadLibraryEx/LoadLibrary.

We need a version taking wchar_t * and calling LoadLibraryExW/LoadLibraryW.

Related to ocaml/ocaml#1200.

alainfrisch commented 7 years ago

A PR would be appreciated!

nojb commented 6 years ago

Fixed by #34.