mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
77daf05dd0
On 32-bit MinGW, clang was throwing errors about this. 64-bit MinGW and regular MSYS does not throw warnings after the change.
14 lines
231 B
C
14 lines
231 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _MONITOR_H
|
|
#define _MONITOR_H
|
|
|
|
int get_runtime_left (const hashcat_ctx_t *hashcat_ctx);
|
|
|
|
HC_API_CALL void *thread_monitor (void *p);
|
|
|
|
#endif // _MONITOR_H
|