GDExtensionInterfaceStringNewWithUtf16CharsAndLen typedef
GDExtensionInterfaceStringNewWithUtf16CharsAndLen = Pointer<NativeFunction<GDExtensionInterfaceStringNewWithUtf16CharsAndLenFunction> >
@name string_new_with_utf16_chars_and_len
@since 4.1
@deprecated in Godot 4.3. Use string_new_with_utf16_chars_and_len2 instead.
Creates a String from a UTF-16 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-16 encoded C string. @param p_size The number of characters (not bytes).
Implementation
typedef GDExtensionInterfaceStringNewWithUtf16CharsAndLen =
ffi.Pointer<
ffi.NativeFunction<
GDExtensionInterfaceStringNewWithUtf16CharsAndLenFunction
>
>;