Merge pull request #2599 from RehkitzDev/master

fixed dynlib wasm stub
This commit is contained in:
gingerBill
2023-06-22 12:56:23 +01:00
committed by GitHub

View File

@@ -3,13 +3,13 @@
package dynlib
_load_library :: proc(path: string, global_symbols := false) -> (Library, bool) {
return
return nil, false
}
_unload_library :: proc(library: Library) -> bool {
return
return false
}
_symbol_address :: proc(library: Library, symbol: string) -> (ptr: rawptr, found: bool) {
return
return nil, false
}