nasm/rdoff/segtab.h

8 lines
248 B
C
Raw Normal View History

2002-05-01 04:58:18 +08:00
typedef void * segtab;
void init_seglocations(segtab * r);
void add_seglocation(segtab * r, int localseg, int destseg, long offset);
int get_seglocation(segtab * r, int localseg, int * destseg, long * offset);
void done_seglocations(segtab * r);