aboutsummaryrefslogtreecommitdiff
path: root/win32/lib/dllcrt1.c
diff options
context:
space:
mode:
Diffstat (limited to 'win32/lib/dllcrt1.c')
-rw-r--r--win32/lib/dllcrt1.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/win32/lib/dllcrt1.c b/win32/lib/dllcrt1.c
new file mode 100644
index 0000000..332bc16
--- /dev/null
+++ b/win32/lib/dllcrt1.c
@@ -0,0 +1,13 @@
+//+---------------------------------------------------------------------------
+
+#include <windows.h>
+
+BOOL WINAPI DllMain (HANDLE hDll, DWORD dwReason, LPVOID lpReserved);
+
+BOOL WINAPI _dllstart(HANDLE hDll, DWORD dwReason, LPVOID lpReserved)
+{
+ BOOL bRet;
+ bRet = DllMain (hDll, dwReason, lpReserved);
+ return bRet;
+}
+