GDExtensionInterfaceVariantGetKeyed typedef
GDExtensionInterfaceVariantGetKeyed = Pointer<NativeFunction<GDExtensionInterfaceVariantGetKeyedFunction> >
@name variant_get_keyed @since 4.1
Gets the value of a keyed property from a Variant.
@param p_self A pointer to the Variant. @param p_key A pointer to a Variant representing the key. @param r_ret A pointer to a Variant which will be assigned the value. @param r_valid A pointer to a boolean which will be set to false if the operation is invalid.
Implementation
typedef GDExtensionInterfaceVariantGetKeyed =
ffi.Pointer<
ffi.NativeFunction<GDExtensionInterfaceVariantGetKeyedFunction>
>;