2016-09-11 09:42:19 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-11 09:42:19 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _OUTFILE_CHECK_H
|
|
|
|
#define _OUTFILE_CHECK_H
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
#define OUTFILES_DIR "outfiles"
|
|
|
|
|
2016-09-15 02:04:54 +00:00
|
|
|
void *thread_outfile_remove (void *p);
|
|
|
|
|
2016-09-22 20:40:47 +00:00
|
|
|
int outcheck_ctx_init (outcheck_ctx_t *outcheck_ctx, const user_options_t *user_options, const folder_config_t *folder_config);
|
|
|
|
void outcheck_ctx_destroy (outcheck_ctx_t *outcheck_ctx);
|
|
|
|
|
2016-09-11 09:42:19 +00:00
|
|
|
#endif // _OUTFILE_CHECK_H
|