diff options
| author | George Marques <george@gmarqu.es> | 2018-01-01 13:59:13 -0200 |
|---|---|---|
| committer | George Marques <george@gmarqu.es> | 2018-01-01 13:59:14 -0200 |
| commit | 2a023a425dd73ee476aa78fc6a544ea3bfbc010b (patch) | |
| tree | 64cdf68eeaf3816f60923addf43d23f5e30d167c /platform/uwp/os_uwp.h | |
| parent | abf416f922cb47b32ddc391eb58f1a8572579665 (diff) | |
| download | redot-engine-2a023a425dd73ee476aa78fc6a544ea3bfbc010b.tar.gz | |
Make GDNative DLLs work on UWP
Diffstat (limited to 'platform/uwp/os_uwp.h')
| -rw-r--r-- | platform/uwp/os_uwp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/uwp/os_uwp.h b/platform/uwp/os_uwp.h index 8d69cd53fd..4d889906c1 100644 --- a/platform/uwp/os_uwp.h +++ b/platform/uwp/os_uwp.h @@ -242,6 +242,10 @@ public: virtual void show_virtual_keyboard(const String &p_existing_text, const Rect2 &p_screen_rect = Rect2()); virtual void hide_virtual_keyboard(); + virtual Error open_dynamic_library(const String p_path, void *&p_library_handle, bool p_also_set_library_path = false); + 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, bool p_optional = false); + virtual Error shell_open(String p_uri); void run(); |
