diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-24 10:42:37 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-24 10:42:37 -0800 |
commit | 290ce56d0181c0c7e7d6e1af3eb27d3015cffca7 (patch) | |
tree | 6d63b311740a875434119f83d3dc03175fbcd4a9 /display-gtk.h | |
parent | cb2114f263d7b23b8b2471cdf2037a0877eec50d (diff) | |
parent | 671f6544ac8b4a6eb68576b37344e84808511eb8 (diff) | |
download | subsurface-290ce56d0181c0c7e7d6e1af3eb27d3015cffca7.tar.gz |
Merge branch 'mac-fixes' of git://git.hohndel.org/subsurface
* 'mac-fixes' of git://git.hohndel.org/subsurface:
Split reading/writing preferences into OS specific files
Diffstat (limited to 'display-gtk.h')
-rw-r--r-- | display-gtk.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/display-gtk.h b/display-gtk.h index 56fd5c4d9..9e5093d40 100644 --- a/display-gtk.h +++ b/display-gtk.h @@ -19,6 +19,19 @@ typedef struct { gboolean otu; } visible_cols_t; +typedef enum { + PREF_BOOL, + PREF_STRING +} pref_type_t; + +#define BOOL_TO_PTR(_cond) ((_cond) ? (void *)1 : NULL) +#define PTR_TO_BOOL(_ptr) ((_ptr) != NULL) + +extern void subsurface_open_conf(void); +extern void subsurface_set_conf(char *name, pref_type_t type, const void *value); +extern const void *subsurface_get_conf(char *name, pref_type_t type); +extern void subsurface_close_conf(void); + extern visible_cols_t visible_cols; extern const char *divelist_font; |