1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-21 23:58:07 +00:00

Rename EVENT_H macro to avoid collision with EVENT_H macro from Apple library

This commit is contained in:
jsteube 2023-01-29 18:03:37 +00:00
parent 708c3de9d5
commit e50e165208

View File

@ -3,8 +3,8 @@
* License.....: MIT * License.....: MIT
*/ */
#ifndef EVENT_H #ifndef HC_EVENT_H
#define EVENT_H #define HC_EVENT_H
#include <stdio.h> #include <stdio.h>
#include <stdarg.h> #include <stdarg.h>
@ -27,4 +27,4 @@ __attribute__ ((format (printf, 2, 3))) size_t event_log_error (hashcat_ctx
int event_ctx_init (hashcat_ctx_t *hashcat_ctx); int event_ctx_init (hashcat_ctx_t *hashcat_ctx);
void event_ctx_destroy (hashcat_ctx_t *hashcat_ctx); void event_ctx_destroy (hashcat_ctx_t *hashcat_ctx);
#endif // EVENT_H #endif // HC_EVENT_H