diff options
| author | David Bremner <david@tethera.net> | 2021-02-23 15:56:47 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2021-03-27 09:26:14 -0300 |
| commit | 2e39ce6eb5d5e5ae2a2a4ed419190003f47e566e (patch) | |
| tree | 38aa58aa45e6126ee0c2230bb54a60e033809a63 /lib/notmuch.h | |
| parent | dd9112e7d8e89e8566b90379f5f3b1461a2d2845 (diff) | |
lib: add NOTMUCH_STATUS_NO_DATABASE
This will allow more precise return values from various open related functions.
Diffstat (limited to 'lib/notmuch.h')
| -rw-r--r-- | lib/notmuch.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/notmuch.h b/lib/notmuch.h index 2a013be0..9ea05fc5 100644 --- a/lib/notmuch.h +++ b/lib/notmuch.h @@ -213,6 +213,10 @@ typedef enum _notmuch_status { */ NOTMUCH_STATUS_NO_CONFIG, /** + * Unable to load a database + */ + NOTMUCH_STATUS_NO_DATABASE, + /** * Database exists, so not (re)-created */ NOTMUCH_STATUS_DATABASE_EXISTS, |
