mirror of
https://github.com/Relintai/gdnative_python.git
synced 2025-01-08 15:29:39 +01:00
39 lines
2.0 KiB
Cython
39 lines
2.0 KiB
Cython
|
from godot._hazmat.gdnative_api_struct cimport (
|
||
|
godot_gdnative_core_api_struct,
|
||
|
godot_gdnative_core_1_1_api_struct,
|
||
|
godot_gdnative_core_1_2_api_struct,
|
||
|
godot_gdnative_ext_nativescript_api_struct,
|
||
|
godot_gdnative_ext_pluginscript_api_struct,
|
||
|
godot_gdnative_ext_android_api_struct,
|
||
|
godot_gdnative_ext_arvr_api_struct,
|
||
|
)
|
||
|
|
||
|
|
||
|
cdef extern from * nogil:
|
||
|
# Global variables defined in pythonscript.c
|
||
|
# Just easier to inline the definitions instead of use a header file
|
||
|
# and having to tweak compile flags.
|
||
|
"""
|
||
|
#include <gdnative_api_struct.gen.h>
|
||
|
#ifdef _WIN32
|
||
|
# define PYTHONSCRIPT_IMPORT __declspec(dllimport)
|
||
|
#else
|
||
|
# define PYTHONSCRIPT_IMPORT
|
||
|
#endif
|
||
|
PYTHONSCRIPT_IMPORT extern const godot_gdnative_core_api_struct *pythonscript_gdapi10;
|
||
|
PYTHONSCRIPT_IMPORT extern const godot_gdnative_core_1_1_api_struct *pythonscript_gdapi11;
|
||
|
PYTHONSCRIPT_IMPORT extern const godot_gdnative_core_1_2_api_struct *pythonscript_gdapi12;
|
||
|
PYTHONSCRIPT_IMPORT extern const godot_gdnative_ext_nativescript_api_struct *pythonscript_gdapi_ext_nativescript;
|
||
|
PYTHONSCRIPT_IMPORT extern const godot_gdnative_ext_pluginscript_api_struct *pythonscript_gdapi_ext_pluginscript;
|
||
|
PYTHONSCRIPT_IMPORT extern const godot_gdnative_ext_android_api_struct *pythonscript_gdapi_ext_android;
|
||
|
PYTHONSCRIPT_IMPORT extern const godot_gdnative_ext_arvr_api_struct *pythonscript_gdapi_ext_arvr;
|
||
|
"""
|
||
|
|
||
|
cdef const godot_gdnative_core_api_struct *pythonscript_gdapi10
|
||
|
cdef const godot_gdnative_core_1_1_api_struct *pythonscript_gdapi11
|
||
|
cdef const godot_gdnative_core_1_2_api_struct *pythonscript_gdapi12
|
||
|
cdef const godot_gdnative_ext_nativescript_api_struct *pythonscript_gdapi_ext_nativescript
|
||
|
cdef const godot_gdnative_ext_pluginscript_api_struct *pythonscript_gdapi_ext_pluginscript
|
||
|
cdef const godot_gdnative_ext_android_api_struct *pythonscript_gdapi_ext_android
|
||
|
cdef const godot_gdnative_ext_arvr_api_struct *pythonscript_gdapi_ext_arvr
|