aboutsummaryrefslogtreecommitdiff
path: root/modules/gdnative/SCsub
diff options
context:
space:
mode:
authorKarroffel2017-11-19 23:41:22 +0100
committerKarroffel2017-11-20 11:09:55 +0100
commit0865365e21b9d5b33f12e48fb6f5f50e19f48e7d (patch)
treee5f61c8b48a0c9afbf9de2126d2ae7a0e3798a14 /modules/gdnative/SCsub
parentf5e85c61039f8ff17805172c7a417747070bbc98 (diff)
downloadgodot-0865365e21b9d5b33f12e48fb6f5f50e19f48e7d.tar.gz
godot-0865365e21b9d5b33f12e48fb6f5f50e19f48e7d.tar.zst
godot-0865365e21b9d5b33f12e48fb6f5f50e19f48e7d.zip
[GDNative] loading error and version error procs
Diffstat (limited to 'modules/gdnative/SCsub')
-rw-r--r--modules/gdnative/SCsub13
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/gdnative/SCsub b/modules/gdnative/SCsub
index 66b8d5cbd..485bf4b9d 100644
--- a/modules/gdnative/SCsub
+++ b/modules/gdnative/SCsub
@@ -49,19 +49,6 @@ def _build_gdnative_api_struct_header(api):
'extern "C" {',
'#endif',
'',
- 'typedef struct godot_gdnative_api_version {',
- '\tunsigned int major;',
- '\tunsigned int minor;',
- '} godot_gdnative_api_version;',
- '',
- 'typedef struct godot_gdnative_api_struct godot_gdnative_api_struct;',
- '',
- 'struct godot_gdnative_api_struct {',
- '\tunsigned int type;',
- '\tgodot_gdnative_api_version version;',
- '\tconst godot_gdnative_api_struct *next;',
- '};',
- '',
'enum GDNATIVE_API_TYPES {',
'\tGDNATIVE_' + api['core']['type'] + ','
]