aboutsummaryrefslogtreecommitdiff
path: root/dep/CascLib/src/DllMain.c
diff options
context:
space:
mode:
Diffstat (limited to 'dep/CascLib/src/DllMain.c')
-rw-r--r--dep/CascLib/src/DllMain.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/dep/CascLib/src/DllMain.c b/dep/CascLib/src/DllMain.c
new file mode 100644
index 00000000000..f7d0ce3063d
--- /dev/null
+++ b/dep/CascLib/src/DllMain.c
@@ -0,0 +1,24 @@
+/*****************************************************************************/
+/* DllMain.c Copyright (c) Ladislav Zezula 2015 */
+/*---------------------------------------------------------------------------*/
+/* Description: DllMain for the CascLib.dll library */
+/*---------------------------------------------------------------------------*/
+/* Date Ver Who Comment */
+/* -------- ---- --- ------- */
+/* 26.10.15 1.00 Lad The first version of DllMain.c */
+/*****************************************************************************/
+
+#define WIN32_LEAN_AND_MEAN
+#include <windows.h>
+
+//-----------------------------------------------------------------------------
+// DllMain
+
+BOOL WINAPI DllMain(HINSTANCE hInst, DWORD dwReason, LPVOID lpReserved)
+{
+ UNREFERENCED_PARAMETER(hInst);
+ UNREFERENCED_PARAMETER(dwReason);
+ UNREFERENCED_PARAMETER(lpReserved);
+
+ return TRUE;
+}