]> git.notmuchmail.org Git - notmuch/blobdiff - lib/notmuch.h
lib: Add two functions: notmuch_query_get_query_string and _get_sort
[notmuch] / lib / notmuch.h
index 9a19699956dc0a9178d6f0fc39110e0ee7acf92d..bd0880f3a232df162e90db66daac6b70e0f47394 100644 (file)
@@ -361,10 +361,18 @@ typedef enum {
     NOTMUCH_SORT_UNSORTED
 } notmuch_sort_t;
 
+/* Return the query_string of this query. See notmuch_query_create. */
+const char *
+notmuch_query_get_query_string (notmuch_query_t *query);
+
 /* Specify the sorting desired for this query. */
 void
 notmuch_query_set_sort (notmuch_query_t *query, notmuch_sort_t sort);
 
+/* Return the sort specified for this query. See notmuch_query_set_sort. */
+notmuch_sort_t
+notmuch_query_get_sort (notmuch_query_t *query);
+
 /* Execute a query for threads, returning a notmuch_threads_t object
  * which can be used to iterate over the results. The returned threads
  * object is owned by the query and as such, will only be valid until