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

LzmaLibExports.c « LzmaLib « Util « C - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 845545db9a90066361549ee45536953879a232f0 (plain)
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;
}