comparison remap.h @ 391:d232a96ac231 src

Use consistent multiple inclusion guards everywhere: Combine them from a LIBDVDNAV_ prefix and the filename.
author diego
date Sun, 14 Sep 2008 20:11:17 +0000
parents d3c273ced49c
children 0a5a6f03b029
comparison
equal deleted inserted replaced
390:ef8c0e834a14 391:d232a96ac231
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 * 17 *
18 * $Id$ 18 * $Id$
19 */ 19 */
20 20
21 #ifndef __REMAP__H 21 #ifndef LIBDVDNAV_REMAP_H
22 #define __REMAP__H 22 #define LIBDVDNAV_REMAP_H
23 typedef struct block_s block_t; 23 typedef struct block_s block_t;
24 24
25 typedef struct remap_s remap_t; 25 typedef struct remap_s remap_t;
26 26
27 remap_t* remap_loadmap( char *title); 27 remap_t* remap_loadmap( char *title);
28 28
29 unsigned long remap_block( 29 unsigned long remap_block(
30 remap_t *map, int domain, int title, int program, 30 remap_t *map, int domain, int title, int program,
31 unsigned long cblock, unsigned long offset); 31 unsigned long cblock, unsigned long offset);
32 32
33 #endif 33 #endif /* LIBDVDNAV_REMAP_H */