From 0c4ee3f7f13afaa46aae773d0c910729e97ac2d1 Mon Sep 17 00:00:00 2001 From: Colum Paget Date: Fri, 6 Nov 2020 23:31:40 +0000 Subject: [PATCH] add dl_hooks --- dl_hooks.h | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 dl_hooks.h diff --git a/dl_hooks.h b/dl_hooks.h new file mode 100644 index 0000000..ff63880 --- /dev/null +++ b/dl_hooks.h @@ -0,0 +1,7 @@ +#ifndef ENHANCER_DL_HOOKS_H +#define ENHANCER_DL_HOOKS_H + +void *(*enhancer_real_dlopen)(const char *filename, int flag); +void enhancer_dl_hooks(); + +#endif