1 | /* |
---|
2 | Copyright (c) 2005 Joshua Elsasser. All rights reserved. |
---|
3 | |
---|
4 | Redistribution and use in source and binary forms, with or without |
---|
5 | modification, are permitted provided that the following conditions |
---|
6 | are met: |
---|
7 | |
---|
8 | 1. Redistributions of source code must retain the above copyright |
---|
9 | notice, this list of conditions and the following disclaimer. |
---|
10 | 2. Redistributions in binary form must reproduce the above copyright |
---|
11 | notice, this list of conditions and the following disclaimer in the |
---|
12 | documentation and/or other materials provided with the distribution. |
---|
13 | |
---|
14 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS "AS IS" AND |
---|
15 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
16 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
17 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
---|
18 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
19 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
20 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
21 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
22 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
23 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
---|
24 | POSSIBILITY OF SUCH DAMAGE. |
---|
25 | */ |
---|
26 | |
---|
27 | #ifndef TG_CONF_H |
---|
28 | #define TG_CONF_H |
---|
29 | |
---|
30 | #include "transmission.h" |
---|
31 | |
---|
32 | struct cf_torrentstate { |
---|
33 | char *ts_torrent; |
---|
34 | char *ts_directory; |
---|
35 | gboolean ts_paused; |
---|
36 | }; |
---|
37 | |
---|
38 | gboolean |
---|
39 | cf_init(const char *confdir, char **errstr); |
---|
40 | gboolean |
---|
41 | cf_lock(char **errstr); |
---|
42 | gboolean |
---|
43 | cf_loadprefs(char **errstr); |
---|
44 | const char * |
---|
45 | cf_getpref(const char *name); |
---|
46 | /* if errstr is NULL then prefs will not be saved */ |
---|
47 | gboolean |
---|
48 | cf_setpref(const char *name, const char *value, char **errstr); |
---|
49 | GList * |
---|
50 | cf_loadstate(char **errstr); |
---|
51 | gboolean |
---|
52 | cf_savestate(int count, tr_stat_t *torrents, char **errstr); |
---|
53 | void |
---|
54 | cf_freestate(struct cf_torrentstate *state); |
---|
55 | |
---|
56 | #endif /* TG_CONF_H */ |
---|