123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef RDOFF_SEGTAB_H
- #define RDOFF_SEGTAB_H 1
- typedef void *segtab;
- void init_seglocations(segtab * r);
- void add_seglocation(segtab * r, int localseg, int destseg, int32_t offset);
- int get_seglocation(segtab * r, int localseg, int *destseg, int32_t *offset);
- void done_seglocations(segtab * r);
- #endif
|