From 303f79f2304d426064f9da83f733c682a7d4a86a Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 18 Dec 2019 10:01:32 +0000 Subject: lt_dlopen(), dlopenext(): initial implementation and integration. --- src/internal/sltdl_module.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/internal/sltdl_module.h (limited to 'src/internal/sltdl_module.h') 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 -- cgit v1.2.3