diff options
author | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-04-19 07:14:05 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuyakou@gmail.com> | 2024-04-19 07:56:02 -0700 |
commit | 764de7fe3195c28be1d9b8abc26ffdf394e87cb3 (patch) | |
tree | b31221f380e958f3bb1d92b38bae14423553cfdc /drivers/unix/os_unix.h | |
parent | ede88cf59d20da54042f16df3fe6ab1aca760d64 (diff) | |
download | redot-engine-764de7fe3195c28be1d9b8abc26ffdf394e87cb3.tar.gz |
Collapse the gdextension arguments into the `GDExtensionData` struct
This is used to reduce the number of arguments to `OS::open_dynamic_library(...)`.
Diffstat (limited to 'drivers/unix/os_unix.h')
-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 d028d7bb0b..df269a59d3 100644 --- a/drivers/unix/os_unix.h +++ b/drivers/unix/os_unix.h @@ -62,7 +62,7 @@ public: virtual Error get_entropy(uint8_t *r_buffer, int p_bytes) override; - 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, bool p_generate_temp_files = false, PackedStringArray *p_library_dependencies = nullptr) override; + virtual Error open_dynamic_library(const String &p_path, void *&p_library_handle, GDExtensionData *p_data = nullptr) override; virtual Error close_dynamic_library(void *p_library_handle) override; virtual Error get_dynamic_library_symbol_handle(void *p_library_handle, const String &p_name, void *&p_symbol_handle, bool p_optional = false) override; |