missing commit in generator.h
[galan.git] / include / prefs.h
blob4aa6ba871b4ffecd1db32b919b015132c656bd58
1 /* gAlan - Graphical Audio Language
2 * Copyright (C) 1999 Tony Garnock-Jones
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef Prefs_H
20 #define Prefs_H
22 extern char *prefs_get_item(const char *key);
23 extern void prefs_set_item(const char *key, const char *value);
24 extern void prefs_clear_item(const char *key);
26 extern void prefs_register_option(const char *key, const char *value);
28 extern void prefs_edit_prefs(void);
30 extern void init_prefs(void);
31 extern void done_prefs(void);
33 #endif