diff options
author | midipix <writeonce@midipix.org> | 2019-12-18 10:01:32 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-12-18 12:52:42 +0000 |
commit | 303f79f2304d426064f9da83f733c682a7d4a86a (patch) | |
tree | c2f1e2b1007a189eb167d51dcf668e06a7116bd2 /src/internal | |
parent | 709fded02a8c12e6b67813f5e217504a3824b953 (diff) | |
download | sltdl-303f79f2304d426064f9da83f733c682a7d4a86a.tar.bz2 sltdl-303f79f2304d426064f9da83f733c682a7d4a86a.tar.xz |
lt_dlopen(), dlopenext(): initial implementation and integration.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/sltdl_module.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/internal/sltdl_module.h b/src/internal/sltdl_module.h new file mode 100644 index 0000000..26e47e3 --- /dev/null +++ b/src/internal/sltdl_module.h @@ -0,0 +1,11 @@ +#ifndef SLTDL_MODULE_H +#define SLTDL_MODULE_H + +struct lt_modctx { + struct lt_modctx * mnext; + void * maddr; + char * mpath; + size_t mrefs; +}; + +#endif |