all repos — mgba @ ee698cc311f37c184e8f0fdf553d271cf6f6bf51

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}