From 6adfb65f6646537abb0ad717614eec26ff14761c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 8 Jul 2024 09:45:14 -0400 Subject: Initial commit --- ext_internal.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ext_internal.h (limited to 'ext_internal.h') diff --git a/ext_internal.h b/ext_internal.h new file mode 100644 index 0000000..a8c7393 --- /dev/null +++ b/ext_internal.h @@ -0,0 +1,13 @@ +#ifndef ASDFAPI_EXT_INTERNAL_H +#define ASDFAPI_EXT_INTERNAL_H + +#include +#include "extensions/ext.h" + +typedef int (*fnptr_ext_init)(); + +void *asdfapi_ext_load(struct ASDFExtension **info, const char *filename); +void *asdfapi_ext_call(void *handle, const char *sym); +void asdfapi_ext_show_descriptor(struct ASDFExtension *info); +#endif //ASDFAPI_EXT_INTERNAL_H + -- cgit