dynlib: add last_error procedure

This commit is contained in:
Laytan Laats
2024-01-06 02:08:11 +01:00
parent 649b5fa528
commit 85b71708dd
4 changed files with 33 additions and 2 deletions
+4
View File
@@ -13,3 +13,7 @@ _unload_library :: proc(library: Library) -> bool {
_symbol_address :: proc(library: Library, symbol: string) -> (ptr: rawptr, found: bool) {
return nil, false
}
_last_error :: proc() -> string {
return ""
}