You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/include/pidfile.h

23 lines
376 B

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef HC_PIDFILE_H
#define HC_PIDFILE_H
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#if defined (_WIN)
#include <windows.h>
#include <psapi.h>
#endif // _WIN
int pidfile_ctx_init (hashcat_ctx_t *hashcat_ctx);
void pidfile_ctx_destroy (hashcat_ctx_t *hashcat_ctx);
#endif // HC_PIDFILE_H