pub unsafe extern "C" fn object_new_with_propv(
    typename: *const c_char,
    parent: *mut Object,
    id: *const c_char,
    errp: *mut *mut Error,
    vargs: *mut __va_list_tag
) -> *mut Object
Expand description

object_new_with_propv: @typename: The name of the type of the object to instantiate. @parent: the parent object @id: The unique ID of the object @errp: pointer to error object @vargs: list of property names and values

See object_new_with_props() for documentation.