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;
|
||
|
}
|