X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-client.h;h=7a674873d5985b122a6ee99cf1f2861e6faac4a2;hp=21b087980a17f45a8d7537b5d7116fbdee449313;hb=d877240f4e097eb3dd477409a24155c10e0b3c17;hpb=5a69aa14748162429c43ad5ff3d8b35779fff0d4 diff --git a/notmuch-client.h b/notmuch-client.h index 21b08798..7a674873 100644 --- a/notmuch-client.h +++ b/notmuch-client.h @@ -83,7 +83,6 @@ typedef struct notmuch_show_params { notmuch_bool_t entire_thread; notmuch_bool_t omit_excluded; notmuch_bool_t output_body; - notmuch_bool_t raw; int part; notmuch_crypto_t crypto; notmuch_bool_t include_html; @@ -263,10 +262,15 @@ json_quote_str (const void *ctx, const char *str); /* notmuch-config.c */ +typedef enum { + NOTMUCH_CONFIG_OPEN = 1 << 0, + NOTMUCH_CONFIG_CREATE = 1 << 1, +} notmuch_config_mode_t; + notmuch_config_t * notmuch_config_open (void *ctx, const char *filename, - notmuch_bool_t create_new); + notmuch_config_mode_t config_mode); void notmuch_config_close (notmuch_config_t *config);