mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-29 11:28:15 +00:00
16 lines
347 B
C
16 lines
347 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _WINDOWS_H
|
|
#define _WINDOWS_H
|
|
|
|
// This is a workaround for files asking to include Windows.h instead of windows.h
|
|
// The problem is that MinGW provides only windows.h
|
|
// LZMA SDK will fail to cross compile for Windows on Linux
|
|
|
|
#include <windows.h>
|
|
|
|
#endif // _WINDOWS_H
|