12 lines
232 B
C
12 lines
232 B
C
|
/*
|
||
|
islzma_dll.c, by Jordan Russell for Inno Setup
|
||
|
This file is public domain (like the LZMA SDK)
|
||
|
*/
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|