pub unsafe extern "C" fn FRENewObjectFromUTF8(
length: u32,
value: FREStr,
object: *mut FREObject,
) -> FREResultExpand description
Creates a new String object that contains a copy of the specified string.
ยงParameters
length: The length, in bytes, of the original string. Must include the NUL terminator.
ยง๐ก๐
IT DOES NOT INCLUDE THE NUL TERMINATOR IN PRACTICE.
value: A pointer to the original string.object: Receives a reference to the new string object.