From 9cef327db3ed77adb5c1362a791d268ba6f28662 Mon Sep 17 00:00:00 2001 From: VP- <898409+VP-@users.noreply.github.com> Date: Mon, 25 Feb 2019 12:00:12 +0100 Subject: [PATCH] Changed DC_STATE_OUT_PREPARING from 21 to 18 --- python/src/deltachat/const.py | 3 ++- src/deltachat.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/python/src/deltachat/const.py b/python/src/deltachat/const.py index d94417f7..e9f1d1ca 100644 --- a/python/src/deltachat/const.py +++ b/python/src/deltachat/const.py @@ -31,9 +31,9 @@ DC_STATE_UNDEFINED = 0 DC_STATE_IN_FRESH = 10 DC_STATE_IN_NOTICED = 13 DC_STATE_IN_SEEN = 16 +DC_STATE_OUT_PREPARING = 18 DC_STATE_OUT_DRAFT = 19 DC_STATE_OUT_PENDING = 20 -DC_STATE_OUT_PREPARING = 21 DC_STATE_OUT_FAILED = 24 DC_STATE_OUT_DELIVERED = 26 DC_STATE_OUT_MDN_RCVD = 28 @@ -69,6 +69,7 @@ DC_EVENT_SECUREJOIN_INVITER_PROGRESS = 2060 DC_EVENT_SECUREJOIN_JOINER_PROGRESS = 2061 DC_EVENT_GET_STRING = 2091 DC_EVENT_HTTP_GET = 2100 +DC_EVENT_HTTP_POST = 2110 DC_EVENT_FILE_COPIED = 2055 DC_EVENT_IS_OFFLINE = 2081 # end const generated diff --git a/src/deltachat.h b/src/deltachat.h index 8684cf53..97461211 100644 --- a/src/deltachat.h +++ b/src/deltachat.h @@ -488,9 +488,9 @@ int dc_chat_is_verified (const dc_chat_t*); #define DC_STATE_IN_FRESH 10 #define DC_STATE_IN_NOTICED 13 #define DC_STATE_IN_SEEN 16 +#define DC_STATE_OUT_PREPARING 18 #define DC_STATE_OUT_DRAFT 19 #define DC_STATE_OUT_PENDING 20 -#define DC_STATE_OUT_PREPARING 21 #define DC_STATE_OUT_FAILED 24 #define DC_STATE_OUT_DELIVERED 26 // to check if a mail was sent, use dc_msg_is_sent() #define DC_STATE_OUT_MDN_RCVD 28