AdgPair — A wrapper for CpmlPair
typedef AdgPair; void adg_pair_copy (AdgPair *pair, const AdgPair *src); AdgPair * adg_pair_dup (const AdgPair *pair); gboolean adg_pair_equal (const AdgPair *pair1, const AdgPair *pair2);
typedef CpmlPair AdgPair;
Another name for CpmlPair: check its documentation for the fields description and visibility details.
void adg_pair_copy (AdgPair *pair, const AdgPair *src);
Copies src in pair. It works in the same way as
cpml_pair_copy() but performing argument validation
before proceeding.
AdgPair * adg_pair_dup (const AdgPair *pair);
Duplicates pair.
|
|
an AdgPair structure |
|
Returns : |
the duplicate of pair: must be freed with g_free()
when no longer needed.
|