all repos — mgba @ 13893803c3f528327a7aa96056e7c51564c5f86c

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}