/** * hb_subset_serialize_link_t: * @width: offsetSize in bytes * @position: position of the offset field in bytes from * beginning of subtable * @objidx: index of subtable * * Represents a link between two objects in the object graph * to be serialized. * * Since: 10.2.0
*/ typedefstruct hb_subset_serialize_link_t { unsignedint width; unsignedint position; unsignedint objidx;
} hb_subset_serialize_link_t;
/** * hb_subset_serialize_object_t: * @head: start of object data * @tail: end of object data * @num_real_links: number of offset field in the object * @real_links: array of offset info * @num_virtual_links: number of objects that must be packed * after current object in the final * serialized order * @virtual_links: array of virtual link info * * Represents an object in the object graph to be serialized. * * Since: 10.2.0
*/ typedefstruct hb_subset_serialize_object_t { char *head; char *tail; unsignedint num_real_links;
hb_subset_serialize_link_t *real_links; unsignedint num_virtual_links;
hb_subset_serialize_link_t *virtual_links;
} hb_subset_serialize_object_t;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.