mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 14:46:53 +00:00
13 lines
289 B
C
13 lines
289 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;
|
|
}
|