GDExtensionInterfaceStringNewWithWideCharsAndLen typedef

GDExtensionInterfaceStringNewWithWideCharsAndLen = Pointer<NativeFunction<GDExtensionInterfaceStringNewWithWideCharsAndLenFunction>>

@name string_new_with_wide_chars_and_len @since 4.1

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

Implementation

typedef GDExtensionInterfaceStringNewWithWideCharsAndLen =
    ffi.Pointer<
      ffi.NativeFunction<
        GDExtensionInterfaceStringNewWithWideCharsAndLenFunction
      >
    >;