mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-08 07:38:17 +00:00
16 lines
408 B
C
16 lines
408 B
C
/* LzmaLibExports.c -- LZMA library DLL Entry point
|
|
2023-03-05 : Igor Pavlov : Public domain */
|
|
|
|
#include "Precomp.h"
|
|
|
|
#include "../../7zWindows.h"
|
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved);
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
|
|
{
|
|
UNUSED_VAR(hInstance)
|
|
UNUSED_VAR(dwReason)
|
|
UNUSED_VAR(lpReserved)
|
|
return TRUE;
|
|
}
|