diff options
author | Todd Zullinger <tmz@pobox.com> | 2008-08-05 01:22:55 -0400 |
---|---|---|
committer | Todd Zullinger <tmz@pobox.com> | 2008-11-14 12:14:43 -0500 |
commit | d605bec8729d29c740874b22088f0cf6812e9758 (patch) | |
tree | d61dffd364d49bbef62cdd8526fd00e749d94b66 | |
parent | 7916fcf8acae19550f6d28b7877a124b075ec83e (diff) | |
download | libgpod-d605bec8729d29c740874b22088f0cf6812e9758.tar.gz libgpod-d605bec8729d29c740874b22088f0cf6812e9758.tar.xz libgpod-d605bec8729d29c740874b22088f0cf6812e9758.zip |
Documentation: mark functions added in 0.4.2
-rw-r--r-- | src/itdb_photoalbum.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/itdb_photoalbum.c b/src/itdb_photoalbum.c index 276ae8b..730c325 100644 --- a/src/itdb_photoalbum.c +++ b/src/itdb_photoalbum.c @@ -247,7 +247,9 @@ Itdb_PhotoDB *itdb_photodb_parse (const gchar *mp, GError **error) * Return value: a newly created Itdb_PhotoDB to be freed with * itdb_photodb_free() when it's no longer needed. The Photo Library * Album is created automatically. - **/ + * + * Since: 0.4.2 + */ Itdb_PhotoDB *itdb_photodb_create (const gchar *mountpoint) { Itdb_PhotoDB *photodb = itdb_photodb_new (); @@ -620,6 +622,8 @@ void itdb_photodb_remove_photo (Itdb_PhotoDB *db, * * Return value: a pointer to the first photoalbum named @albumname, * else NULL + * + * Since: 0.4.2 */ Itdb_PhotoAlbum *itdb_photodb_photoalbum_by_name (Itdb_PhotoDB *db, const gchar *albumname) { @@ -650,7 +654,9 @@ Itdb_PhotoAlbum *itdb_photodb_photoalbum_by_name (Itdb_PhotoDB *db, const gchar * * Memory used by the removed album will be freed and the album cannot * be accessed any more. - **/ + * + * Since: 0.4.2 + */ void itdb_photodb_photoalbum_remove (Itdb_PhotoDB *db, Itdb_PhotoAlbum *album, gboolean remove_pics) @@ -691,8 +697,8 @@ void itdb_photodb_photoalbum_remove (Itdb_PhotoDB *db, * itdb_photodb_add_photo_from_data(), so you don't have to use this * function to add them there. * + * Since: 0.4.2 */ - void itdb_photodb_photoalbum_add_photo (Itdb_PhotoDB *db, Itdb_PhotoAlbum *album, Itdb_Artwork *photo, @@ -715,6 +721,8 @@ void itdb_photodb_photoalbum_add_photo (Itdb_PhotoDB *db, * Create and add a new photoalbum. * * Return value: the album which was created and added. + * + * Since: 0.4.2 */ Itdb_PhotoAlbum *itdb_photodb_photoalbum_create (Itdb_PhotoDB *db, const gchar *albumname, |