Mercurial > mplayer.hg
annotate dvdread/nav_read.h @ 25714:a8b68561b79f
Make all gui xpm bitmaps const
author | reimar |
---|---|
date | Sun, 13 Jan 2008 16:43:36 +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_READ_H_INCLUDED |
3 #define NAV_READ_H_INCLUDED | |
4 | |
5 /* | |
15874 | 6 * Copyright (C) 2000, 2001, 2002 Håkan Hjort <d95hjort@dtek.chalmers.se>. |
7029 | 7 * |
8 * This program is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 2 of the License, or | |
11 * (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, | |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program; if not, write to the Free Software | |
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
21 */ | |
22 | |
20983 | 23 #include <dvdread/nav_types.h> |
7029 | 24 |
15874 | 25 /** |
26 * Parsing of NAV data, PCI and DSI parts. | |
27 */ | |
28 | |
7029 | 29 #ifdef __cplusplus |
30 extern "C" { | |
31 #endif | |
32 | |
33 /** | |
15874 | 34 * Reads the PCI packet data pointed to into th pci struct. |
35 * | |
36 * @param pci Pointer to the PCI data structure to be filled in. | |
37 * @param bufffer Pointer to the buffer of the on disc PCI data. | |
38 */ | |
7029 | 39 void navRead_PCI(pci_t *, unsigned char *); |
40 | |
41 /** | |
42 * Reads the DSI packet data pointed to into dsi struct. | |
15874 | 43 * |
44 * @param dsi Pointer to the DSI data structure to be filled in. | |
45 * @param bufffer Pointer to the buffer of the on disc DSI data. | |
7029 | 46 */ |
47 void navRead_DSI(dsi_t *, unsigned char *); | |
48 | |
49 #ifdef __cplusplus | |
50 }; | |
51 #endif | |
52 #endif /* NAV_READ_H_INCLUDED */ |