blob: c567e02018ca487be25340f7168468cb33d9cc94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SLTDL_MODULE_H
#define SLTDL_MODULE_H
struct lt_modctx {
const struct lt_symdef *symtbl;
struct lt_modctx * mnext;
void * maddr;
char * mpath;
size_t mrefs;
};
#endif
|