diff options
author | Thomas Herzog <thomas.herzog@mail.com> | 2017-10-03 14:37:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-03 14:37:04 +0200 |
commit | c5ab18f33e34b49b0603382af4af5e3fcd18c4ed (patch) | |
tree | 4f38f246cee5a38df9b207e6a7e79512908febf1 /modules/gdnative/gdnative.cpp | |
parent | 49afad2b473849415364c03b43a9db568f6a5565 (diff) | |
parent | cdc29926afd37feddbd93ebbafd2e3987c728881 (diff) |
Merge pull request #11792 from touilleMan/gdnative-json-api
[GDnative] autogenerate gdnative_api_struct.h from a json
Diffstat (limited to 'modules/gdnative/gdnative.cpp')
-rw-r--r-- | modules/gdnative/gdnative.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/modules/gdnative/gdnative.cpp b/modules/gdnative/gdnative.cpp index f0c09a3370..373b98dc8b 100644 --- a/modules/gdnative/gdnative.cpp +++ b/modules/gdnative/gdnative.cpp @@ -40,15 +40,8 @@ const String init_symbol = "godot_gdnative_init"; const String terminate_symbol = "godot_gdnative_terminate"; -#define GDAPI_FUNC(name, ret_type, ...) name, -#define GDAPI_FUNC_VOID(name, ...) name, - -const godot_gdnative_api_struct api_struct = { - GODOT_GDNATIVE_API_FUNCTIONS -}; - -#undef GDAPI_FUNC -#undef GDAPI_FUNC_VOID +// Defined in gdnative_api_struct.gen.cpp +extern const godot_gdnative_api_struct api_struct; String GDNativeLibrary::platform_names[NUM_PLATFORMS + 1] = { "X11_32bit", |