X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-pair.h;h=412bf4a4e7ce8d02e127ff6b49254ec4d8d368a5;hb=7e7be75d6f353df4d1c605d5df3011457f51a926;hp=4e23d14493bd8b2e7b7eec44d0d2530321a3e29c;hpb=fd0987fe062d13dcd572a0f1bb9787a5edda1f7a;p=modest diff --git a/src/modest-pair.h b/src/modest-pair.h index 4e23d14..412bf4a 100644 --- a/src/modest-pair.h +++ b/src/modest-pair.h @@ -34,12 +34,13 @@ G_BEGIN_DECLS -struct _ModestPair { +typedef struct _ModestPair { gpointer *first; gpointer *second; gboolean own; -}; -typedef struct _ModestPair ModestPair; +} ModestPair; + +typedef GSList ModestPairList; /** @@ -52,30 +53,28 @@ typedef struct _ModestPair ModestPair; * * Returns: a newly allocated ModestPair instance */ -ModestPair* modest_pair_new (gpointer first, gpointer second, gboolean own); +ModestPair* modest_pair_new (gpointer first, gpointer second, gboolean own); /** - * modest_pair_destroy: + * modest_pair_free: * @self: a valid ModestPair instance or NULL * - * destroy a ModestPair instance. If it was created with own==TRUE, the elements + * free a ModestPair instance. If it was created with own==TRUE, the elements * will be g_free'd as well. If pair==NULL, nothing will be done. */ -void modest_pair_destroy (ModestPair *pair); +void modest_pair_free (ModestPair *self); /** - * modest_pair_gslist_destroy: - * @pairs: a list of ModestPair instances + * modest_pair_list_free: + * @pairs: a valid ModestPairList * * convenience function to destroy all pairs in a list * - * Returns: NULL */ -GSList *modest_pair_gslist_destroy (GSList *pairs); - +void modest_pair_list_free (ModestPairList *pairs); G_END_DECLS