summaryrefslogtreecommitdiff
path: root/lib/3rdparty/cdl.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/3rdparty/cdl.h')
-rw-r--r--lib/3rdparty/cdl.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/3rdparty/cdl.h b/lib/3rdparty/cdl.h
new file mode 100644
index 0000000..9255654
--- /dev/null
+++ b/lib/3rdparty/cdl.h
@@ -0,0 +1,10 @@
+#ifndef __chck_cdl__
+#define __chck_cdl__
+
+void* chckDlLoad(const char *file, const char **outError);
+void* chckDlLoadSymbol(void *handle, const char *name, const char **outError);
+void chckDlUnload(void *handle);
+
+#endif /* __chck_cdl__ */
+
+/* vim: set ts=8 sw=3 tw=0 :*/