all repos — mgba @ 3c844a9ae9e6de6c1aae1eb5b627ce1d3aa334bc

mGBA Game Boy Advance Emulator

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

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