diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2017-07-29 17:58:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-29 17:58:14 +0200 |
commit | fc611f4b4c8c8a5bd3ceab898863984ea24521d9 (patch) | |
tree | 5be86271b59586777818fd1456692f397cf3b1c5 /modules/gdnative/godot | |
parent | b276d92c8a63887df011032bc95d98bbb9c51c70 (diff) | |
parent | 3193460c4a76dcc51ef18231e7f778c3d122eaeb (diff) |
Merge pull request #9952 from endragor/pass-gdnative-library
Pass GDNativeLibrary pointer to library init
Diffstat (limited to 'modules/gdnative/godot')
-rw-r--r-- | modules/gdnative/godot/gdnative.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdnative/godot/gdnative.h b/modules/gdnative/godot/gdnative.h index 510bf36cd4..b0343272ef 100644 --- a/modules/gdnative/godot/gdnative.h +++ b/modules/gdnative/godot/gdnative.h @@ -265,6 +265,7 @@ typedef struct { uint64_t core_api_hash; uint64_t editor_api_hash; uint64_t no_api_hash; + godot_object *gd_native_library; // pointer to GDNativeLibrary that is being initialized } godot_gdnative_init_options; typedef struct { |