mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
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;
|
|
}
|