diff options
| author | Karroffel | 2017-03-08 02:50:13 +0100 |
|---|---|---|
| committer | Karroffel | 2017-03-29 23:05:15 +0200 |
| commit | 2281942fb3ac5889abc6e95df27a80e71fe32c0e (patch) | |
| tree | 770e8ac3c7b7b8b241a04eb7495405e6d0a0068d /drivers/unix/os_unix.h | |
| parent | 92b6c8095acc8348da7657dde357202840c26382 (diff) | |
| download | godot-2281942fb3ac5889abc6e95df27a80e71fe32c0e.tar.gz godot-2281942fb3ac5889abc6e95df27a80e71fe32c0e.tar.zst godot-2281942fb3ac5889abc6e95df27a80e71fe32c0e.zip | |
Diffstat (limited to 'drivers/unix/os_unix.h')
| -rw-r--r-- | drivers/unix/os_unix.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/unix/os_unix.h b/drivers/unix/os_unix.h index 3ac4f4610..771421ec3 100644 --- a/drivers/unix/os_unix.h +++ b/drivers/unix/os_unix.h @@ -82,6 +82,10 @@ public: //virtual VideoMode get_video_mode() const; //virtual void get_fullscreen_mode_list(List<VideoMode> *p_list) const; + 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 set_cwd(const String &p_cwd); virtual String get_name(); |
