diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-05-03 08:13:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 08:13:34 +0200 |
commit | c9ce4069a371da36ecbb0c1216ed5990498a4412 (patch) | |
tree | 23082416355bb2fd3ae2965bf784329ade4c479d /core/os | |
parent | 0275d60c1b50737e2e52a0b60c97048941bb74c8 (diff) | |
parent | 80f61352fb1b0bed251c06eb0a21a09374de77b3 (diff) |
Merge pull request #60601 from touilleMan/gdextension_get_library_path
Add GDNativeInterface::get_library_path to GDExtension
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/os.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/os.h b/core/os/os.h index 0047943056..a7cf3f1679 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -137,7 +137,7 @@ public: virtual void alert(const String &p_alert, const String &p_title = "ALERT!"); - virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false) { return ERR_UNAVAILABLE; } + virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false, String *r_resolved_path = nullptr) { return ERR_UNAVAILABLE; } virtual Error close_dynamic_library(void *p_library_handle) { return ERR_UNAVAILABLE; } virtual Error get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional = false) { return ERR_UNAVAILABLE; } |