Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LzmaLibExports.c « LzmaLib « C - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc90cc0b9d3a83a2b5d25a28288268dd5fd08d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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;
}