mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 04:23:06 +00:00
15 lines
331 B
C
15 lines
331 B
C
/* LzmaLibExports.c -- LZMA library DLL Entry point
|
|
2015-11-08 : Igor Pavlov : Public domain */
|
|
|
|
#include "../../Precomp.h"
|
|
|
|
#include <windows.h>
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
|
|
{
|
|
UNUSED_VAR(hInstance);
|
|
UNUSED_VAR(dwReason);
|
|
UNUSED_VAR(lpReserved);
|
|
return TRUE;
|
|
}
|