annotate ifo_print.h @ 24:3552a3d11604 src

Remove useless $Id$, $Log$ and $Name$ keywords.
author diego
date Sun, 14 Sep 2008 20:43:32 +0000
parents ac07d427fbc6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
1 /*
21
4aa618ae094f Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents: 20
diff changeset
2 * This file is part of libdvdread.
4aa618ae094f Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents: 20
diff changeset
3 *
4aa618ae094f Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents: 20
diff changeset
4 * libdvdread is free software; you can redistribute it and/or modify
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
5 * it under the terms of the GNU General Public License as published by
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
7 * (at your option) any later version.
20
fce16251755c Remove all trailing whitespace,
rathann
parents: 13
diff changeset
8 *
21
4aa618ae094f Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents: 20
diff changeset
9 * libdvdread is distributed in the hope that it will be useful,
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
12 * GNU General Public License for more details.
20
fce16251755c Remove all trailing whitespace,
rathann
parents: 13
diff changeset
13 *
21
4aa618ae094f Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents: 20
diff changeset
14 * You should have received a copy of the GNU General Public License along
4aa618ae094f Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents: 20
diff changeset
15 * with libdvdread; if not, write to the Free Software Foundation, Inc.,
4aa618ae094f Use consistent license headers everywhere: Fix FSF address and boilerplate.
diego
parents: 20
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
17 */
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
18
23
ac07d427fbc6 Use consistent multiple inclusion guards everywhere:
diego
parents: 21
diff changeset
19 #ifndef LIBDVDREAD_IFO_PRINT_H
ac07d427fbc6 Use consistent multiple inclusion guards everywhere:
diego
parents: 21
diff changeset
20 #define LIBDVDREAD_IFO_PRINT_H
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
21
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
22 #include <inttypes.h>
11
5b63b7151e60 cosmetics: fix indentation
rathann
parents: 10
diff changeset
23 #include "ifo_types.h"
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
24
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
25 void ifo_print(dvd_reader_t *dvd, int title);
13
4e610984cc3f added dvdread_print_time() and removed the file-static print_time() in nav_print.c; based on a patch by Erik Hovland org
nicodvb
parents: 11
diff changeset
26 void dvdread_print_time(dvd_time_t *dtime);
3
fdbae45c30fc moved to src/ the sources files
nicodvb
parents:
diff changeset
27
23
ac07d427fbc6 Use consistent multiple inclusion guards everywhere:
diego
parents: 21
diff changeset
28 #endif /* LIBDVDREAD_IFO_PRINT_H */