GDExtensionInterfaceStringNewWithUtf32CharsAndLen typedef

GDExtensionInterfaceStringNewWithUtf32CharsAndLen = Pointer<NativeFunction<GDExtensionInterfaceStringNewWithUtf32CharsAndLenFunction>>

@name string_new_with_utf32_chars_and_len @since 4.1

Creates a String from a UTF-32 encoded C string with the given length.

@param r_dest A pointer to a Variant to hold the newly created String. @param p_contents A pointer to a UTF-32 encoded C string. @param p_size The number of characters (not bytes).

Implementation

typedef GDExtensionInterfaceStringNewWithUtf32CharsAndLen =
    ffi.Pointer<
      ffi.NativeFunction<
        GDExtensionInterfaceStringNewWithUtf32CharsAndLenFunction
      >
    >;