diff options
Diffstat (limited to 'src/input/libdvdnav/remap.h')
-rw-r--r-- | src/input/libdvdnav/remap.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/input/libdvdnav/remap.h b/src/input/libdvdnav/remap.h new file mode 100644 index 000000000..841a24a51 --- /dev/null +++ b/src/input/libdvdnav/remap.h @@ -0,0 +1,13 @@ +#ifndef __REMAP__H +#define __REMAP__H +typedef struct block_s block_t; + +typedef struct remap_s remap_t; + +remap_t* remap_loadmap( char *title); + +unsigned long remap_block( + remap_t *map, int domain, int title, int program, + unsigned long cblock, unsigned long offset); + +#endif |