diff options
author | David Snopek <dsnopek@gmail.com> | 2023-02-17 10:49:09 -0600 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2023-05-16 15:18:48 -0500 |
commit | 431e30bc3273c83315725f56365845f0b89c0524 (patch) | |
tree | e0fa53d1327a6816665513568676110444ef30b4 /gdextension/gdextension_interface.h | |
parent | 1c18413de00f1a6265b2b6c30175b2f6a434b574 (diff) | |
download | redot-cpp-431e30bc3273c83315725f56365845f0b89c0524.tar.gz |
Ensure GDExtension class is the correct type for the Godot engine class
Diffstat (limited to 'gdextension/gdextension_interface.h')
-rw-r--r-- | gdextension/gdextension_interface.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gdextension/gdextension_interface.h b/gdextension/gdextension_interface.h index 44cea71..b5c1cef 100644 --- a/gdextension/gdextension_interface.h +++ b/gdextension/gdextension_interface.h @@ -1880,6 +1880,19 @@ typedef void (*GDExtensionInterfaceObjectSetInstanceBinding)(GDExtensionObjectPt typedef void (*GDExtensionInterfaceObjectSetInstance)(GDExtensionObjectPtr p_o, GDExtensionConstStringNamePtr p_classname, GDExtensionClassInstancePtr p_instance); /* p_classname should be a registered extension class and should extend the p_o object's class. */ /** + * @name object_get_class_name + * + * Gets the class name of an Object. + * + * @param p_object A pointer to the Object. + * @param p_library A pointer the library received by the GDExtension's entry point function. + * @param r_class_name A pointer to a String to receive the class name. + * + * @return true if successful in getting the class name; otherwise false. + */ +typedef GDExtensionBool (*GDExtensionInterfaceObjectGetClassName)(GDExtensionConstObjectPtr p_object, GDExtensionClassLibraryPtr p_library, GDExtensionStringNamePtr r_class_name); + +/** * @name object_cast_to * * Casts an Object to a different type. |