all repos — mgba @ 1b9e1e8268fd292332a8ea132bb044e87d73e1e6

mGBA Game Boy Advance Emulator

src/third-party/lzma/Util/LzmaLib/LzmaLibExports.c (view raw)

 1/* LzmaLibExports.c -- LZMA library DLL Entry point
 22015-11-08 : Igor Pavlov : Public domain */
 3
 4#include "../../Precomp.h"
 5
 6#include <windows.h>
 7
 8BOOL 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}