1
/*
2
 * Copyright 2008-2011 Various Authors
3
 * Copyright 2008 Timo Hirvonen
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License as
7
 * published by the Free Software Foundation; either version 2 of the
8
 * License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful, but
11
 * WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 * General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17
 */
18
19
#ifndef JOB_H
20
#define JOB_H
21
22
#include "cmus.h"
23
24
struct add_data {
25
	enum file_type type;
26
	char *name;
27
	add_ti_cb add;
28
};
29
30
struct update_data {
31
	size_t size;
32
	size_t used;
33
	struct track_info **ti;
34
	unsigned int force : 1;
35
};
36
37
struct update_cache_data {
38
	unsigned int force : 1;
39
};
40
41
void do_add_job(void *data);
42
void free_add_job(void *data);
43
void do_update_job(void *data);
44
void free_update_job(void *data);
45
void do_update_cache_job(void *data);
46
void free_update_cache_job(void *data);
47
48
#endif