1 2 3 4 5 6 7 8 9 10 11 12
/* 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; }