/** * Author......: See docs/credits.txt * License.....: MIT */ #ifndef _PIDFILE_H #define _PIDFILE_H #include #include #include #if defined (_POSIX) #include #include #endif // _POSIX #if defined (_WIN) #include #include #endif // _WIN void unlink_pidfile (hashcat_ctx_t *hashcat_ctx); int pidfile_ctx_init (hashcat_ctx_t *hashcat_ctx); void pidfile_ctx_destroy (hashcat_ctx_t *hashcat_ctx); #endif // _PIDFILE_H