1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

dl: always use dl.get_shared_library_extension() for dl.dl_ext

This commit is contained in:
Delyan Angelov
2020-12-15 18:53:27 +02:00
parent 3e85c759aa
commit 50c09e074a
3 changed files with 12 additions and 13 deletions

View File

@ -3,7 +3,6 @@ module dl
pub const (
rtld_now = 0
rtld_lazy = 0
dl_ext = '.dll'
)
fn C.LoadLibrary(libfilename C.LPCWSTR) voidptr