commit 333e207d7013d326c504f3aa49ea198b22bf10da
Author: Christophe Fergeau <[email protected]>
Date: Wed Oct 6 16:04:28 2010 +0200
Remove unused get/put16lint functions
src/itdb_itunesdb.c | 24 ------------------------
1 files changed, 0 insertions(+), 24 deletions(-)
---
diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c
index f4f1344..18fc780 100644
--- a/src/itdb_itunesdb.c
+++ b/src/itdb_itunesdb.c
@@ -3443,14 +3443,6 @@ static void raw_put16lint (WContents *cts, guint16 n)
put_data (cts, (gchar *)&n, 2);
}
-/* Write 2-byte integer @n to @cts at position @seek in
- little endian order */
-static void raw_put16lint_seek (WContents *cts, guint32 n, gulong seek)
-{
- n = GUINT16_TO_LE (n);
- put_data_seek (cts, (gchar *)&n, 2, seek);
-}
-
/* Write 3-byte integer @n to @cts in big endian order. */
static void raw_put24lint (WContents *cts, guint32 n)
{
@@ -3517,14 +3509,6 @@ static void raw_put16bint (WContents *cts, guint16 n)
put_data (cts, (gchar *)&n, 2);
}
-/* Write a 2-byte integer @n to @cts at position @seek in big
- endian order. */
-static void raw_put16bint_seek (WContents *cts, guint16 n, gulong seek)
-{
- n = GUINT16_TO_BE (n);
- put_data_seek (cts, (gchar *)&n, 2, seek);
-}
-
/* Write 3-byte integer @n to @cts in big endian order. */
static void raw_put24bint (WContents *cts, guint32 n)
{
@@ -3630,14 +3614,6 @@ static void put16lint (WContents *cts, guint16 n)
raw_put16bint (cts, n);
}
-static void put16lint_seek (WContents *cts, guint16 n, gulong seek)
-{
- if(!cts->reversed)
- raw_put16lint_seek (cts, n, seek);
- else
- raw_put16bint_seek (cts, n, seek);
-}
-
#if 0
static void put24lint (WContents *cts, guint32 n)
{
------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3.
Spend less time writing and rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2