all repos — mgba @ 503a7486e017b02e76c8a174c767f6a60a6f53b2

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}