aboutsummaryrefslogtreecommitdiff
path: root/src/DllMain.c
diff options
context:
space:
mode:
authorLadislav Zezula <zezula@volny.cz>2020-10-07 12:32:05 +0200
committerLadislav Zezula <zezula@volny.cz>2020-10-07 12:32:05 +0200
commitce0ae9aff317f21bae3959b632ee362341722838 (patch)
tree28dd53581702645bac4cd4470e499ade2762900f /src/DllMain.c
parent4fc81fbbe79ee88f020bf1a218641e66a853d9e7 (diff)
Migrated to VS 2019
Diffstat (limited to 'src/DllMain.c')
-rw-r--r--src/DllMain.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/DllMain.c b/src/DllMain.c
new file mode 100644
index 0000000..98eb003
--- /dev/null
+++ b/src/DllMain.c
@@ -0,0 +1,24 @@
+/*****************************************************************************/
+/* DllMain.c Copyright (c) Ladislav Zezula 2006 */
+/*---------------------------------------------------------------------------*/
+/* Description: DllMain for the StormLib.dll library */
+/*---------------------------------------------------------------------------*/
+/* Date Ver Who Comment */
+/* -------- ---- --- ------- */
+/* 23.11.06 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;
+}