mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 16:07:06 -06:00
15 lines
286 B
C
Executable File
15 lines
286 B
C
Executable File
/* LzmaLibExports.c -- LZMA library DLL Entry point
|
|
2008-03-26
|
|
Igor Pavlov
|
|
Public domain */
|
|
|
|
#include <windows.h>
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
|
|
{
|
|
hInstance = hInstance;
|
|
dwReason = dwReason;
|
|
lpReserved = lpReserved;
|
|
return TRUE;
|
|
}
|