tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

LzmaLibExports.c (331B)


      1 /* LzmaLibExports.c -- LZMA library DLL Entry point
      2 2015-11-08 : Igor Pavlov : Public domain */
      3 
      4 #include "../../Precomp.h"
      5 
      6 #include <windows.h>
      7 
      8 BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
      9 {
     10  UNUSED_VAR(hInstance);
     11  UNUSED_VAR(dwReason);
     12  UNUSED_VAR(lpReserved);
     13  return TRUE;
     14 }