diff options
| author | Thomas Herzog | 2017-07-27 13:03:10 +0200 |
|---|---|---|
| committer | GitHub | 2017-07-27 13:03:10 +0200 |
| commit | 3c53b3560fe1ae6b476cf6941ca0d7c79e0093a7 (patch) | |
| tree | 87dc648f137a9d0d47766b281427766f621ad48f /drivers/unix/os_unix.h | |
| parent | 411f09a512d5847fc9c6270439308d1e3093f211 (diff) | |
| parent | 135c2112ad87265d35899dede34c3a7e06ec2f54 (diff) | |
| download | godot-3c53b35.tar.gz godot-3c53b35.tar.zst godot-3c53b35.zip | |
Merge pull request #9907 from karroffel/nativescript-init-call
NativeScript changes and OS symbol lookup optional error handling
Diffstat (limited to '')
| -rw-r--r-- | drivers/unix/os_unix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.h b/drivers/unix/os_unix.h index 953b0f043..fdc6d6e28 100644 --- a/drivers/unix/os_unix.h +++ b/drivers/unix/os_unix.h @@ -85,7 +85,7 @@ public: virtual Error open_dynamic_library(const String p_path, void *&p_library_handle); virtual Error close_dynamic_library(void *p_library_handle); - virtual Error get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle); + virtual Error get_dynamic_library_symbol_handle(void *p_library_handle, const String p_name, void *&p_symbol_handle, bool p_optional = false); virtual Error set_cwd(const String &p_cwd); |
