summaryrefslogtreecommitdiffhomepage
path: root/src/dalist_entry_point.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dalist_entry_point.c')
-rw-r--r--src/dalist_entry_point.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/dalist_entry_point.c b/src/dalist_entry_point.c
new file mode 100644
index 0000000..463f2b4
--- /dev/null
+++ b/src/dalist_entry_point.c
@@ -0,0 +1,12 @@
+#ifdef MIDIPIX_FREESTANDING
+
+#include <dalist/dalist.h>
+
+int __stdcall dalist_entry_point(
+ void * hinstance,
+ uint32_t reason,
+ void * reserved)
+{
+ return 1;
+}
+#endif