pub unsafe extern "C" fn object_property_add_tm(
    obj: *mut Object,
    name: *const c_char,
    get: Option<unsafe extern "C" fn(arg1: *mut Object, arg2: *mut tm, arg3: *mut *mut Error)>,
    errp: *mut *mut Error
)
Expand description

object_property_add_tm: @obj: the object to add a property to @name: the name of the property @get: the getter or NULL if the property is write-only. @errp: if an error occurs, a pointer to an area to store the error

Add a read-only struct tm valued property using a getter function. This function will add a property of type ‘struct tm’.