comparison remap.h @ 96:2fcb4f228308 src

Adding "Personalizing DVD Viewing" files from <kevin_smathers@hp.com> Not yet enabled. Will be enabled soon.
author jcdutton
date Tue, 17 Sep 2002 10:47:02 +0000
parents
children b6834e6359cf
comparison
equal deleted inserted replaced
95:e7ebabe059b9 96:2fcb4f228308
1 #ifndef __REMAP__H
2 #define __REMAP__H
3 typedef struct block_s block_t;
4
5 typedef struct remap_s remap_t;
6
7 remap_t* remap_loadmap( char *title);
8
9 unsigned long remap_block(
10 remap_t *map, int domain, int title, int program,
11 unsigned long cblock, unsigned long offset);
12
13 #endif