summaryrefslogtreecommitdiffhomepage
path: root/src/dalist_entry_point.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-09-26 00:36:14 -0400
committermidipix <writeonce@midipix.org>2015-09-26 11:05:46 -0400
commit9ed8ecba43c402aa32c84df5d3a817223898c3cc (patch)
tree2233a963dd5368440562164d129415d68bd8674e /src/dalist_entry_point.c
parentfa897aef9891212c388a333d9ac5bb8ccf3f4cb9 (diff)
downloaddalist-9ed8ecba43c402aa32c84df5d3a817223898c3cc.tar.bz2
dalist-9ed8ecba43c402aa32c84df5d3a817223898c3cc.tar.xz
normalize the name of the library's entry point.
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