Mercurial > mplayer.hg
annotate dvdread/nav_print.h @ 26210:c5a06bc58309
Do not disable all Mac OS X support when pthreads are unavailable.
author | diego |
---|---|
date | Sat, 15 Mar 2008 09:20:41 +0000 |
parents | 1542693b2a30 |
children |
rev | line source |
---|---|
24050
1542693b2a30
Sync libdvdread with version 0.9.5 (cosmetic changes).
diego
parents:
20983
diff
changeset
|
1 /* -*- c-basic-offset: 2; indent-tabs-mode: nil -*- */ |
7029 | 2 #ifndef NAV_PRINT_H_INCLUDED |
3 #define NAV_PRINT_H_INCLUDED | |
4 | |
5 /* | |
15874 | 6 * Copyright (C) 2001, 2002 Billy Biggs <vektor@dumbterm.net>, |
7 * Håkan Hjort <d95hjort@dtek.chalmers.se> | |
7029 | 8 * |
9 * This program is free software; you can redistribute it and/or modify | |
10 * it under the terms of the GNU General Public License as published by | |
11 * the Free Software Foundation; either version 2 of the License, or (at | |
12 * your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, but | |
15 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 * General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
22 */ | |
23 | |
20983 | 24 #include <dvdread/nav_types.h> |
7029 | 25 |
15874 | 26 /** |
27 * Pretty printing of the NAV packets, PCI and DSI structs. | |
28 */ | |
29 | |
7029 | 30 #ifdef __cplusplus |
31 extern "C" { | |
32 #endif | |
33 | |
34 /** | |
35 * Prints information contained in the PCI to stdout. | |
15874 | 36 * |
37 * @param pci Pointer to the PCI data structure to be printed. | |
7029 | 38 */ |
39 void navPrint_PCI(pci_t *); | |
40 | |
41 /** | |
42 * Prints information contained in the DSI to stdout. | |
15874 | 43 * |
44 * @param dsi Pointer to the DSI data structure to be printed. | |
7029 | 45 */ |
46 void navPrint_DSI(dsi_t *); | |
47 | |
48 #ifdef __cplusplus | |
49 }; | |
50 #endif | |
51 #endif /* NAV_PRINT_H_INCLUDED */ |