blob: 841a24a51a6cf0d1b326dbaefcf0666a642a3a1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|