mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
3957adff10
Recompiled tier1 and mathlib for all platforms will come in next commit.
13 lines
301 B
C
13 lines
301 B
C
/* LzmaLibExports.c -- LZMA library DLL Entry point
|
|
2008-10-04 : Igor Pavlov : Public domain */
|
|
|
|
#include <windows.h>
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
|
|
{
|
|
hInstance = hInstance;
|
|
dwReason = dwReason;
|
|
lpReserved = lpReserved;
|
|
return TRUE;
|
|
}
|