mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-14 05:25:09 -05:00
b3e299dbde
Some modifications to handle backslashes and forward slashes, along with some optimizations to speed up OTR generation.
25 lines
1.0 KiB
C
25 lines
1.0 KiB
C
/*****************************************************************************/
|
|
/* 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;
|
|
}
|