Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
716 B
C
31 lines
716 B
C
//-----------------------------------------------------------------------------
|
|
//
|
|
// ImageLib Sources
|
|
// Copyright (C) 2000-2002 by Denton Woods
|
|
// Last modified: 02/16/2002 <--Y2K Compliant! =]
|
|
//
|
|
// Filename: src-IL/src/il_main.c
|
|
//
|
|
// Description: Startup function
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
#include "il_internal.h"
|
|
|
|
/* Only needed for MSVC++ unless extended to actually do something =) */
|
|
#if defined(_WIN32) && defined(_MSC_VER)
|
|
BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
|
|
{
|
|
hModule; ul_reason_for_call; lpReserved;
|
|
|
|
if (ul_reason_for_call == DLL_PROCESS_ATTACH) {
|
|
//ilInit();
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
#endif
|
|
|
|
|