]> git.tdb.fi Git - ext/subsurface.git/blobdiff - display-gtk.h
Split reading/writing preferences into OS specific files
[ext/subsurface.git] / display-gtk.h
index 56fd5c4d99f515c1597f9cbda16a121840315e98..9e5093d400b524af5e3dea518e4f90ae742917ea 100644 (file)
@@ -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;