summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Zullinger <tmz@pobox.com>2008-08-05 02:01:05 -0400
committerTodd Zullinger <tmz@pobox.com>2008-11-14 12:14:43 -0500
commit7a1ee4d23ad572b1c48bcc72f34719a78ddc59fd (patch)
tree5a13114d7ed2e5fc172343905bd29d4c03d5b395
parentcdcf2d6b7824507314a43e06940f42eb555aa78b (diff)
downloadlibgpod-tmz-7a1ee4d23ad572b1c48bcc72f34719a78ddc59fd.tar.gz
libgpod-tmz-7a1ee4d23ad572b1c48bcc72f34719a78ddc59fd.tar.xz
libgpod-tmz-7a1ee4d23ad572b1c48bcc72f34719a78ddc59fd.zip
Documentation: mark functions added in 0.3.0
-rw-r--r--src/itdb.h2
-rw-r--r--src/itdb_artwork.c16
-rw-r--r--src/itdb_thumb.c8
-rw-r--r--src/itdb_track.c8
4 files changed, 26 insertions, 8 deletions
diff --git a/src/itdb.h b/src/itdb.h
index 849605d..ab5ac3f 100644
--- a/src/itdb.h
+++ b/src/itdb.h
@@ -849,6 +849,8 @@ struct _Itdb_Chapterdata
* @userdata_destroy: A function to free #userdata
*
* Structure representing artwork in an #Itdb_iTunesDB or #Itdb_PhotoDB
+ *
+ * Since: 0.3.0
*/
struct _Itdb_Artwork {
Itdb_Thumb *thumbnail;
diff --git a/src/itdb_artwork.c b/src/itdb_artwork.c
index 439002e..8b8c6db 100644
--- a/src/itdb_artwork.c
+++ b/src/itdb_artwork.c
@@ -50,7 +50,9 @@
*
* Return value: a new #Itdb_Artwork to be freed with itdb_artwork_free() when
* no longer needed
- **/
+ *
+ * Since: 0.3.0
+ */
Itdb_Artwork *itdb_artwork_new (void)
{
Itdb_Artwork *artwork = g_new0 (Itdb_Artwork, 1);
@@ -62,7 +64,9 @@ Itdb_Artwork *itdb_artwork_new (void)
* @artwork: an #Itdb_Artwork
*
* Frees memory used by @artwork
- **/
+ *
+ * Since: 0.3.0
+ */
void itdb_artwork_free (Itdb_Artwork *artwork)
{
g_return_if_fail (artwork);
@@ -79,7 +83,9 @@ void itdb_artwork_free (Itdb_Artwork *artwork)
* Duplicates @artwork
*
* Return value: a new copy of @artwork
- **/
+ *
+ * Since: 0.3.0
+ */
Itdb_Artwork *itdb_artwork_duplicate (Itdb_Artwork *artwork)
{
Itdb_Artwork *dup;
@@ -101,7 +107,9 @@ Itdb_Artwork *itdb_artwork_duplicate (Itdb_Artwork *artwork)
* @artwork: an #Itdb_Artwork
*
* Removes all thumbnails from @artwork
- **/
+ *
+ * Since: 0.3.0
+ */
void
itdb_artwork_remove_thumbnails (Itdb_Artwork *artwork)
{
diff --git a/src/itdb_thumb.c b/src/itdb_thumb.c
index d2919e1..0199c68 100644
--- a/src/itdb_thumb.c
+++ b/src/itdb_thumb.c
@@ -115,7 +115,9 @@ static void itdb_thumb_ipod_item_free (Itdb_Thumb_Ipod_Item *item)
* @thumb: an #Itdb_Thumb
*
* Frees the memory used by @thumb
- **/
+ *
+ * Since: 0.3.0
+ */
void itdb_thumb_free (Itdb_Thumb *thumb)
{
g_return_if_fail (thumb);
@@ -185,7 +187,9 @@ itdb_thumb_ipod_item_duplicate (Itdb_Thumb_Ipod_Item *item)
*
* Return value: a newly allocated copy of @thumb to be freed with
* itdb_thumb_free() after use
- **/
+ *
+ * Since: 0.3.0
+ */
Itdb_Thumb *itdb_thumb_duplicate (Itdb_Thumb *thumb)
{
switch (thumb->data_type) {
diff --git a/src/itdb_track.c b/src/itdb_track.c
index 5b0341c..510fc2f 100644
--- a/src/itdb_track.c
+++ b/src/itdb_track.c
@@ -440,7 +440,9 @@ static gboolean itdb_track_set_thumbnails_internal (Itdb_Track *track,
* function is called.
*
* Return value: TRUE if the thumbnail could be added, FALSE otherwise.
- **/
+ *
+ * Since: 0.3.0
+ */
gboolean itdb_track_set_thumbnails (Itdb_Track *track,
const gchar *filename)
{
@@ -507,7 +509,9 @@ gboolean itdb_track_set_thumbnails_from_pixbuf (Itdb_Track *track,
* @track: an #Itdb_Track
*
* Removes the thumbnails associated with @track
- **/
+ *
+ * Since: 0.3.0
+ */
void itdb_track_remove_thumbnails (Itdb_Track *track)
{
g_return_if_fail (track);