summaryrefslogtreecommitdiffstats
path: root/libmpdvdkit2/nav_print.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-16 22:37:48 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-08-16 22:37:48 +0000
commit75e28d06f8b7678bb68699c568051f897a979f99 (patch)
treef90eb4f1aa5a1a21bd868aaa70073cc103a34a0d /libmpdvdkit2/nav_print.h
parent86b7ea518ba55aec64654bd6c472bcbe4869a84f (diff)
downloadmpv-75e28d06f8b7678bb68699c568051f897a979f99.tar.bz2
mpv-75e28d06f8b7678bb68699c568051f897a979f99.tar.xz
importing libdvdread 0.9.3 files
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7030 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdvdkit2/nav_print.h')
-rw-r--r--libmpdvdkit2/nav_print.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/libmpdvdkit2/nav_print.h b/libmpdvdkit2/nav_print.h
new file mode 100644
index 0000000000..28aefc7e5b
--- /dev/null
+++ b/libmpdvdkit2/nav_print.h
@@ -0,0 +1,42 @@
+#ifndef NAV_PRINT_H_INCLUDED
+#define NAV_PRINT_H_INCLUDED
+
+/*
+ * Copyright (C) 2001 Billy Biggs <vektor@dumbterm.net>,
+ * Håkan Hjort <d95hjort@dtek.chalmers.se>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#include <dvdread/nav_types.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * Prints information contained in the PCI to stdout.
+ */
+void navPrint_PCI(pci_t *);
+
+/**
+ * Prints information contained in the DSI to stdout.
+ */
+void navPrint_DSI(dsi_t *);
+
+#ifdef __cplusplus
+};
+#endif
+#endif /* NAV_PRINT_H_INCLUDED */