diff dvdnav.h @ 44:c50cb59dbb19 src

Add dvd menu language selection api. from Michael Roitzsch <mroi@users.sourceforge.net>
author jcdutton
date Sat, 15 Jun 2002 02:10:18 +0000
parents 0ba15bf3dc25
children 5674fbd44f26
line wrap: on
line diff
--- a/dvdnav.h	Thu Jun 06 15:03:09 2002 +0000
+++ b/dvdnav.h	Sat Jun 15 02:10:18 2002 +0000
@@ -551,7 +551,7 @@
  */
 
 /** 
- * \defgroup languages Menu Languages
+ * \defgroup languages Languages
  *
  * @{
  */
@@ -562,7 +562,25 @@
  * \param self Pointer to dvdnav_t associated with this operation.
  * \param code 2 char ISO639 Language code in a C-style string.
  */
-dvdnav_status_t dvdnav_menu_languge_select(dvdnav_t *self,
+dvdnav_status_t dvdnav_menu_language_select(dvdnav_t *self,
+					   char *code);
+
+/**
+ * Set which audio language we should use.
+ *
+ * \param self Pointer to dvdnav_t associated with this operation.
+ * \param code 2 char ISO639 Language code in a C-style string.
+ */
+dvdnav_status_t dvdnav_audio_language_select(dvdnav_t *self,
+					    char *code);
+
+/**
+ * Set which spu language we should use.
+ *
+ * \param self Pointer to dvdnav_t associated with this operation.
+ * \param code 2 char ISO639 Language code in a C-style string.
+ */
+dvdnav_status_t dvdnav_spu_language_select(dvdnav_t *self,
 					  char *code);
 
 /**