GDExtensionInterfaceVariantCallStatic typedef

GDExtensionInterfaceVariantCallStatic = Pointer<NativeFunction<GDExtensionInterfaceVariantCallStaticFunction>>

@name variant_call_static @since 4.1

Calls a static 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 be updated with error information.

@see Variant::call_static()

Implementation

typedef GDExtensionInterfaceVariantCallStatic =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfaceVariantCallStaticFunction>
    >;