source: trunk/gtk/conf.h @ 7

Last change on this file since 7 was 7, checked in by root, 17 years ago

Update 2005-11-24

File size: 1.9 KB
Line 
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
32struct cf_torrentstate {
33  char *ts_torrent;
34  char *ts_directory;
35  gboolean ts_paused;
36};
37
38gboolean
39cf_init(const char *confdir, char **errstr);
40gboolean
41cf_lock(char **errstr);
42gboolean
43cf_loadprefs(char **errstr);
44const char *
45cf_getpref(const char *name);
46/* if errstr is NULL then prefs will not be saved */
47gboolean
48cf_setpref(const char *name, const char *value, char **errstr);
49GList *
50cf_loadstate(char **errstr);
51gboolean
52cf_savestate(int count, tr_stat_t *torrents, char **errstr);
53void
54cf_freestate(struct cf_torrentstate *state);
55
56#endif /* TG_CONF_H */
Note: See TracBrowser for help on using the repository browser.