summaryrefslogtreecommitdiff
path: root/src/internal
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-12-18 10:01:32 +0000
committermidipix <writeonce@midipix.org>2019-12-18 12:52:42 +0000
commit303f79f2304d426064f9da83f733c682a7d4a86a (patch)
treec2f1e2b1007a189eb167d51dcf668e06a7116bd2 /src/internal
parent709fded02a8c12e6b67813f5e217504a3824b953 (diff)
downloadsltdl-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.h11
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