GDExtensionInterfaceStringNewWithLatin1CharsAndLen typedef

GDExtensionInterfaceStringNewWithLatin1CharsAndLen = Pointer<NativeFunction<GDExtensionInterfaceStringNewWithLatin1CharsAndLenFunction>>

@name string_new_with_latin1_chars_and_len @since 4.1

Creates a String from a Latin-1 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 Latin-1 encoded C string. @param p_size The number of characters (= number of bytes).

Implementation

typedef GDExtensionInterfaceStringNewWithLatin1CharsAndLen =
    ffi.Pointer<
      ffi.NativeFunction<
        GDExtensionInterfaceStringNewWithLatin1CharsAndLenFunction
      >
    >;