| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-04-09 21:07:53 +02:00
										 |  |  | /*  godot.h                                                              */ | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2017-04-08 00:11:42 +02:00
										 |  |  | /* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md)    */ | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | #ifndef GODOT_NATIVESCRIPT_H
 | 
					
						
							|  |  |  | #define GODOT_NATIVESCRIPT_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <godot/gdnative.h>
 | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef GDAPI_BUILT_IN
 | 
					
						
							|  |  |  | #define GDAPI_EXPORT
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | #if defined(GDAPI_EXPORT)
 | 
					
						
							| 
									
										
										
										
											2017-04-20 13:15:45 +02:00
										 |  |  | #define GDCALLINGCONV
 | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | #define GDAPI __declspec(dllexport) GDCALLINGCONV
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-04-20 13:15:45 +02:00
										 |  |  | #define GDCALLINGCONV
 | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | #define GDAPI __declspec(dllimport) GDCALLINGCONV
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #elif defined(__APPLE__)
 | 
					
						
							|  |  |  | #include "TargetConditionals.h"
 | 
					
						
							|  |  |  | #if TARGET_OS_IPHONE
 | 
					
						
							|  |  |  | #define GDCALLINGCONV
 | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | #define GDAPI
 | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | #elif TARGET_OS_MAC
 | 
					
						
							|  |  |  | #define GDCALLINGCONV __attribute__((sysv_abi))
 | 
					
						
							|  |  |  | #define GDAPI GDCALLINGCONV
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | #define GDCALLINGCONV __attribute__((sysv_abi))
 | 
					
						
							|  |  |  | #define GDAPI GDCALLINGCONV
 | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-18 01:16:10 +02:00
										 |  |  | // This is for libraries *using* the header, NOT GODOT EXPOSING STUFF!!
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | #define GDN_EXPORT __declspec(dllexport)
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define GDN_EXPORT
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | #include <stdbool.h>
 | 
					
						
							|  |  |  | #include <stdint.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef enum { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	GODOT_METHOD_RPC_MODE_DISABLED, | 
					
						
							|  |  |  | 	GODOT_METHOD_RPC_MODE_REMOTE, | 
					
						
							|  |  |  | 	GODOT_METHOD_RPC_MODE_SYNC, | 
					
						
							|  |  |  | 	GODOT_METHOD_RPC_MODE_MASTER, | 
					
						
							|  |  |  | 	GODOT_METHOD_RPC_MODE_SLAVE, | 
					
						
							|  |  |  | } godot_method_rpc_mode; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef enum { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	GODOT_PROPERTY_HINT_NONE, ///< no hint provided.
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_RANGE, ///< hint_text = "min,max,step,slider; //slider is optional"
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_EXP_RANGE, ///< hint_text = "min,max,step", exponential edit
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_ENUM, ///< hint_text= "val1,val2,val3,etc"
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_EXP_EASING, /// exponential easing funciton (Math::ease)
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_LENGTH, ///< hint_text= "length" (as integer)
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_SPRITE_FRAME, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_KEY_ACCEL, ///< hint_text= "length" (as integer)
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_FLAGS, ///< hint_text= "flag1,flag2,etc" (as bit flags)
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_LAYERS_2D_RENDER, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_LAYERS_2D_PHYSICS, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_LAYERS_3D_RENDER, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_LAYERS_3D_PHYSICS, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,"
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_DIR, ///< a directort path must be passed
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_GLOBAL_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,"
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_GLOBAL_DIR, ///< a directort path must be passed
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_RESOURCE_TYPE, ///< a resource object type
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_MULTILINE_TEXT, ///< used for string properties that can contain multiple lines
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_COLOR_NO_ALPHA, ///< used for ignoring alpha component when editing a color
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_IMAGE_COMPRESS_LOSSY, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_IMAGE_COMPRESS_LOSSLESS, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_OBJECT_ID, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_TYPE_STRING, ///< a type string, the hint is the base type to choose
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE, ///< so something else can provide this (used in scripts)
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_METHOD_OF_VARIANT_TYPE, ///< a method of a type
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_METHOD_OF_BASE_TYPE, ///< a method of a base type
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_METHOD_OF_INSTANCE, ///< a method of an instance
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_METHOD_OF_SCRIPT, ///< a method of a script & base
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_PROPERTY_OF_VARIANT_TYPE, ///< a property of a type
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_PROPERTY_OF_BASE_TYPE, ///< a property of a base type
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_PROPERTY_OF_INSTANCE, ///< a property of an instance
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_PROPERTY_OF_SCRIPT, ///< a property of a script & base
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_HINT_MAX, | 
					
						
							|  |  |  | } godot_property_hint; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef enum { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_STORAGE = 1, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_EDITOR = 2, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_NETWORK = 4, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_EDITOR_HELPER = 8, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_CHECKABLE = 16, //used for editing global variables
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_CHECKED = 32, //used for editing global variables
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_INTERNATIONALIZED = 64, //hint for internationalized strings
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_GROUP = 128, //used for grouping props in the editor
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_CATEGORY = 256, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_STORE_IF_NONZERO = 512, //only store if nonzero
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_STORE_IF_NONONE = 1024, //only store if false
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_NO_INSTANCE_STATE = 2048, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_RESTART_IF_CHANGED = 4096, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_SCRIPT_VARIABLE = 8192, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_STORE_IF_NULL = 16384, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_ANIMATE_AS_TRIGGER = 32768, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_UPDATE_ALL_IF_MODIFIED = 65536, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_DEFAULT = GODOT_PROPERTY_USAGE_STORAGE | GODOT_PROPERTY_USAGE_EDITOR | GODOT_PROPERTY_USAGE_NETWORK, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_DEFAULT_INTL = GODOT_PROPERTY_USAGE_STORAGE | GODOT_PROPERTY_USAGE_EDITOR | GODOT_PROPERTY_USAGE_NETWORK | GODOT_PROPERTY_USAGE_INTERNATIONALIZED, | 
					
						
							|  |  |  | 	GODOT_PROPERTY_USAGE_NOEDITOR = GODOT_PROPERTY_USAGE_STORAGE | GODOT_PROPERTY_USAGE_NETWORK, | 
					
						
							|  |  |  | } godot_property_usage_flags; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	godot_method_rpc_mode rset_type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	godot_int type; | 
					
						
							|  |  |  | 	godot_property_hint hint; | 
					
						
							|  |  |  | 	godot_string hint_string; | 
					
						
							|  |  |  | 	godot_property_usage_flags usage; | 
					
						
							|  |  |  | 	godot_variant default_value; | 
					
						
							|  |  |  | } godot_property_attributes; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	// instance pointer, method_data - return user data
 | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | 	GDCALLINGCONV void *(*create_func)(godot_object *, void *); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	void *method_data; | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | 	GDCALLINGCONV void (*free_func)(void *); | 
					
						
							| 
									
										
										
										
											2017-04-11 01:45:50 +02:00
										 |  |  | } godot_instance_create_func; | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	// instance pointer, method data, user data
 | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | 	GDCALLINGCONV void (*destroy_func)(godot_object *, void *, void *); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	void *method_data; | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | 	GDCALLINGCONV void (*free_func)(void *); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | } godot_instance_destroy_func; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | void GDAPI godot_nativescript_register_class(void *p_gdnative_handle, const char *p_name, const char *p_base, godot_instance_create_func p_create_func, godot_instance_destroy_func p_destroy_func); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | void GDAPI godot_nativescript_register_tool_class(void *p_gdnative_handle, const char *p_name, const char *p_base, godot_instance_create_func p_create_func, godot_instance_destroy_func p_destroy_func); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  | 	godot_method_rpc_mode rpc_type; | 
					
						
							|  |  |  | } godot_method_attributes; | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	// instance pointer, method data, user data, num args, args - return result as varaint
 | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | 	GDCALLINGCONV godot_variant (*method)(godot_object *, void *, void *, int, godot_variant **); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	void *method_data; | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | 	GDCALLINGCONV void (*free_func)(void *); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | } godot_instance_method; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | void GDAPI godot_nativescript_register_method(void *p_gdnative_handle, const char *p_name, const char *p_function_name, godot_method_attributes p_attr, godot_instance_method p_method); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	// instance pointer, method data, user data, value
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | 	GDCALLINGCONV void (*set_func)(godot_object *, void *, void *, godot_variant *); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	void *method_data; | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | 	GDCALLINGCONV void (*free_func)(void *); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | } godot_property_set_func; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	// instance pointer, method data, user data, value
 | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | 	GDCALLINGCONV godot_variant (*get_func)(godot_object *, void *, void *); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	void *method_data; | 
					
						
							| 
									
										
										
										
											2017-04-19 13:39:57 +02:00
										 |  |  | 	GDCALLINGCONV void (*free_func)(void *); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | } godot_property_get_func; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | void GDAPI godot_nativescript_register_property(void *p_gdnative_handle, const char *p_name, const char *p_path, godot_property_attributes *p_attr, godot_property_set_func p_set_func, godot_property_get_func p_get_func); | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	godot_string name; | 
					
						
							|  |  |  | 	godot_int type; | 
					
						
							|  |  |  | 	godot_property_hint hint; | 
					
						
							|  |  |  | 	godot_string hint_string; | 
					
						
							|  |  |  | 	godot_property_usage_flags usage; | 
					
						
							|  |  |  | 	godot_variant default_value; | 
					
						
							|  |  |  | } godot_signal_argument; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | 	godot_string name; | 
					
						
							|  |  |  | 	int num_args; | 
					
						
							|  |  |  | 	godot_signal_argument *args; | 
					
						
							|  |  |  | 	int num_default_args; | 
					
						
							|  |  |  | 	godot_variant *default_args; | 
					
						
							|  |  |  | } godot_signal; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | void GDAPI godot_nativescript_register_signal(void *p_gdnative_handle, const char *p_name, const godot_signal *p_signal); | 
					
						
							| 
									
										
										
										
											2017-04-10 19:56:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | void GDAPI *godot_nativescript_get_userdata(godot_object *p_instance); | 
					
						
							| 
									
										
										
										
											2017-05-09 20:18:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-03 16:11:38 +02:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-14 01:44:14 +02:00
										 |  |  | #endif
 |