updated copyright
[ptask.git] / src / settings.h
index d15fd4d..5e1a584 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012-2013 jeanfi@gmail.com
+ * Copyright (C) 2012-2016 jeanfi@gmail.com
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
@@ -38,5 +38,10 @@ gint settings_get_int(const gchar *key);
 void settings_set_int(const gchar *key, gint value);
 gboolean settings_get_boolean(const gchar *key);
 void settings_set_boolean(const gchar *key, gboolean value);
+gchar *settings_get_str(const gchar *key);
+void settings_set_str(const gchar *key, const gchar *value);
+
+const char *settings_get_notes_dir();
+void settings_set_notes_dir(const char *dir);
 
 #endif