summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Fergeau <teuf@gnome.org>2008-07-29 20:11:04 +0000
committerChristophe Fergeau <teuf@gnome.org>2008-07-29 20:11:04 +0000
commit89fd72c08236360e279847e89edc8402dfa4a04b (patch)
tree1f20bec617f10dbe1512f49d78356c953dd746c5
parent2ff0f64ce13bda99e15bc78986ffd3778a09fdef (diff)
downloadlibgpod-89fd72c08236360e279847e89edc8402dfa4a04b.tar.gz
libgpod-89fd72c08236360e279847e89edc8402dfa4a04b.tar.xz
libgpod-89fd72c08236360e279847e89edc8402dfa4a04b.zip
Mask symbols from the SysInfoExtended parser
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@2069 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r--src/itdb_sysinfo_extended_parser.h11
-rw-r--r--tests/Makefile.am7
2 files changed, 14 insertions, 4 deletions
diff --git a/src/itdb_sysinfo_extended_parser.h b/src/itdb_sysinfo_extended_parser.h
index a58fa4f..a417654 100644
--- a/src/itdb_sysinfo_extended_parser.h
+++ b/src/itdb_sysinfo_extended_parser.h
@@ -34,15 +34,20 @@ G_BEGIN_DECLS
typedef struct _SysInfoIpodProperties SysInfoIpodProperties;
-void itdb_sysinfo_properties_dump (SysInfoIpodProperties *props);
+G_GNUC_INTERNAL void
+itdb_sysinfo_properties_dump (SysInfoIpodProperties *props);
+
+G_GNUC_INTERNAL
SysInfoIpodProperties *itdb_sysinfo_extended_parse (const char *filename,
GError **error);
+
+G_GNUC_INTERNAL
void itdb_sysinfo_properties_free (SysInfoIpodProperties *props);
-const char *
+G_GNUC_INTERNAL const char *
itdb_sysinfo_properties_get_serial_number (const SysInfoIpodProperties *props);
-const char *
+G_GNUC_INTERNAL const char *
itdb_sysinfo_properties_get_firewire_id (const SysInfoIpodProperties *props);
G_GNUC_INTERNAL const GList *
diff --git a/tests/Makefile.am b/tests/Makefile.am
index f9e003b..b4bbcc6 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -37,7 +37,12 @@ test_checksum_SOURCES = test-checksum.c
test_firewire_id_SOURCES = test-fw-id.c
-test_sysinfo_extended_parsing_SOURCES = test-sysinfo-extended-parsing.c
+test_sysinfo_extended_parsing_SOURCES = \
+ test-sysinfo-extended-parsing.c \
+ $(top_srcdir)/src/itdb_plist.c \
+ $(top_srcdir)/src/itdb_sysinfo_extended_parser.c
+
+test_sysinfo_extended_parsing_LDADD =
get_timezone_SOURCES = get-timezone.c