[totem-pl-parser] docs: Add unused symbols to documentation sections file



commit 4cb92d74adfdb1d4d004f639f9bfb830bf2cc5c0
Author: Philip Withnall <philip tecnocode co uk>
Date:   Wed Dec 21 11:47:12 2011 +0000

    docs: Add unused symbols to documentation sections file

 docs/reference/Makefile.am                  |    1 +
 docs/reference/totem-pl-parser-sections.txt |    2 ++
 plparse/totem-pl-parser.h                   |   14 ++++++++++++++
 3 files changed, 17 insertions(+), 0 deletions(-)
---
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index 4a3bb79..7ff64e7 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -62,6 +62,7 @@ IGNORE_HFILES=					\
 	totem-pl-parser-private.h		\
 	totem-pl-parser-qt.h			\
 	totem-pl-parser-smil.h			\
+	totem-pl-parser-videosite.h		\
 	totem-pl-parser-wm.h			\
 	totem-pl-parser-xspf.h			\
 	xmllexer.h				\
diff --git a/docs/reference/totem-pl-parser-sections.txt b/docs/reference/totem-pl-parser-sections.txt
index a4bd49a..6153eaa 100644
--- a/docs/reference/totem-pl-parser-sections.txt
+++ b/docs/reference/totem-pl-parser-sections.txt
@@ -6,6 +6,7 @@ TotemPlParserClass
 TotemPlParserResult
 TotemPlParserType
 TotemPlParserError
+TotemPlParserMetadata
 totem_pl_parser_new
 totem_pl_parser_parse
 totem_pl_parser_parse_async
@@ -45,6 +46,7 @@ TOTEM_PL_PARSER_FIELD_DOWNLOAD_URI
 TOTEM_PL_PARSER_FIELD_ID
 TOTEM_PL_PARSER_FIELD_IS_PLAYLIST
 TOTEM_PL_PARSER_FIELD_SUBTITLE_URI
+TOTEM_PL_PARSER_FIELD_CONTENT_TYPE
 <SUBSECTION Standard>
 TOTEM_PL_PARSER
 TOTEM_IS_PL_PARSER
diff --git a/plparse/totem-pl-parser.h b/plparse/totem-pl-parser.h
index d35d918..e7c35dc 100644
--- a/plparse/totem-pl-parser.h
+++ b/plparse/totem-pl-parser.h
@@ -364,6 +364,20 @@ void totem_pl_parser_parse_with_base_async (TotemPlParser *parser,
 
 TotemPlParser *totem_pl_parser_new (void);
 
+/**
+ * TotemPlParserMetadata:
+ *
+ * An alias for #GHashTable, used in the #TotemPlParser::entry-parsed and
+ * #TotemPlParser::playlist-started signals due to #GHashTable not being a
+ * boxed type when totem-pl-parser was originally written.
+ *
+ * The hash table is a mapping from field names (such as
+ * %TOTEM_PL_PARSER_FIELD_ALBUM) to their associated values.
+ *
+ * It is safe to use #GHashTable instead of #TotemPlParserMetadata everywhere.
+ */
+typedef GHashTable TotemPlParserMetadata;
+
 GType totem_pl_parser_metadata_get_type (void) G_GNUC_CONST;
 #define TOTEM_TYPE_PL_PARSER_METADATA (totem_pl_parser_metadata_get_type())
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]