Skip to content

Commit 21b86b6

Browse files
authored
Merge pull request #1473 from dsnopek/gdextension-interface-catch-up
Catch up with minor changes to `gdextension_interface.h`
2 parents b697ba8 + 3e9afcc commit 21b86b6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

gdextension/gdextension_interface.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -2384,6 +2384,9 @@ typedef void (*GDExtensionInterfaceObjectSetInstance)(GDExtensionObjectPtr p_o,
23842384
*
23852385
* Gets the class name of an Object.
23862386
*
2387+
* If the GDExtension wraps the Godot object in an abstraction specific to its class, this is the
2388+
* function that should be used to determine which wrapper to use.
2389+
*
23872390
* @param p_object A pointer to the Object.
23882391
* @param p_library A pointer the library received by the GDExtension's entry point function.
23892392
* @param r_class_name A pointer to a String to receive the class name.
@@ -2658,7 +2661,7 @@ typedef void *(*GDExtensionInterfaceClassdbGetClassTag)(GDExtensionConstStringNa
26582661
/**
26592662
* @name classdb_register_extension_class
26602663
* @since 4.1
2661-
* @deprecated in Godot 4.2. Use `classdb_register_extension_class2` instead.
2664+
* @deprecated in Godot 4.2. Use `classdb_register_extension_class3` instead.
26622665
*
26632666
* Registers an extension class in the ClassDB.
26642667
*
@@ -2674,6 +2677,7 @@ typedef void (*GDExtensionInterfaceClassdbRegisterExtensionClass)(GDExtensionCla
26742677
/**
26752678
* @name classdb_register_extension_class2
26762679
* @since 4.2
2680+
* @deprecated in Godot 4.3. Use `classdb_register_extension_class3` instead.
26772681
*
26782682
* Registers an extension class in the ClassDB.
26792683
*

0 commit comments

Comments
 (0)