mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
13 lines
289 B
C
Executable File
13 lines
289 B
C
Executable File
/* 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;
|
|
}
|