]> git.notmuchmail.org Git - notmuch/blobdiff - lib/database-private.h
lib: add stub for notmuch_database_open_with_config
[notmuch] / lib / database-private.h
index 2d220811c4a092930ed575bb60ae3121df5b50bf..d83cf0d0ae0bc674cd341703d004082d6504dcce 100644 (file)
@@ -228,6 +228,9 @@ struct _notmuch_database {
      * here, but at least they are small */
     notmuch_string_map_t *user_prefix;
     notmuch_string_map_t *user_header;
+
+    /* Cached and possibly overridden configuration */
+    notmuch_string_map_t *config;
 };
 
 /* Prior to database version 3, features were implied by the database
@@ -277,4 +280,11 @@ _notmuch_database_parse_features (const void *ctx, const char *features, unsigne
 char *
 _notmuch_database_print_features (const void *ctx, unsigned int features);
 
+/* prefix.cc */
+notmuch_status_t
+_notmuch_database_setup_standard_query_fields (notmuch_database_t *notmuch);
+
+notmuch_status_t
+_notmuch_database_setup_user_query_fields (notmuch_database_t *notmuch);
+
 #endif