X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=notmuch.h;h=912cbd2660af90d6f636b07f2acfd3d4ed8f3757;hb=302d54834d090d7e62377883f36dc709c95e5673;hp=02c743aa60b192ffd398d94a0b027006957c3910;hpb=f232f0a797b4fb657e630ca4bd664f9dcfe90dac;p=notmuch diff --git a/notmuch.h b/notmuch.h index 02c743aa..912cbd26 100644 --- a/notmuch.h +++ b/notmuch.h @@ -49,6 +49,10 @@ typedef int notmuch_bool_t; * * NOTMUCH_STATUS_SUCCESS: No error occurred. * + * XXX: We don't really want to expose this lame XAPIAN_EXCEPTION + * value. Instead we should map to things like DATABASE_LOCKED or + * whatever. + * * NOTMUCH_STATUS_XAPIAN_EXCEPTION: A Xapian exception occurred * * NOTMUCH_STATUS_FILE_NOT_EMAIL: A file was presented that doesn't @@ -72,6 +76,13 @@ typedef enum _notmuch_status { NOTMUCH_STATUS_LAST_STATUS } notmuch_status_t; +/* Get a string representation of a notmuch_status_t value. + * + * The result is readonly. + */ +const char * +notmuch_status_to_string (notmuch_status_t status); + /* Various opaque data types. For each notmuch__t see the various * notmuch_ functions below. */ typedef struct _notmuch_database notmuch_database_t;