GDExtensionInterfaceVariantCall typedef

GDExtensionInterfaceVariantCall = Pointer<NativeFunction<GDExtensionInterfaceVariantCallFunction>>

@name variant_call @since 4.1

Calls a method on a Variant.

@param p_self A pointer to the Variant. @param p_method A pointer to a StringName identifying the method. @param p_args A pointer to a C array of Variant. @param p_argument_count The number of arguments. @param r_return A pointer a Variant which will be assigned the return value. @param r_error A pointer the structure which will hold error information.

@see Variant::callp()

Implementation

typedef GDExtensionInterfaceVariantCall =
    ffi.Pointer<ffi.NativeFunction<GDExtensionInterfaceVariantCallFunction>>;