X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fwebcit.h;h=c5e1fe4222896afa277794108f58ecca58bc39cb;hb=91b321ff3cb15ca37b5530c9ec5c0f4007b54988;hp=19fe3722d921d0c46930b12afd3f8053ef73a828;hpb=ada8144bf852768101effe5657d13c36b1ed1f6f;p=citadel.git diff --git a/webcit/webcit.h b/webcit/webcit.h index 19fe3722d..c5e1fe422 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -61,8 +61,6 @@ #define _(string) (string) #endif -#define IsEmptyStr(a) ((a)[0] == '\0') - #define DO_DBG_QR 0 #define DBG_QR(x) if(DO_DBG_QR) _DBG_QR(x) #define DBG_QR2(x) if(DO_DBG_QR) _DBG_QR2(x) @@ -692,7 +690,7 @@ extern char *days[]; long locate_user_vcard_in_this_room(message_summary **VCMsg, wc_mime_attachment **VCAtt); void http_transmit_thing(const char *content_type, int is_static); -void http_transmit_headers(const char *content_type, int is_static, long is_chunked); +void http_transmit_headers(const char *content_type, int is_static, long is_chunked, int is_gzip); long unescape_input(char *buf); void check_thread_pool_size(void); void StrEndTab(StrBuf *Target, int tabnum, int num_tabs); @@ -753,6 +751,7 @@ struct blogpost { long *msgs; /* Array of msgnums for messages we are displaying */ int num_msgs; /* Number of msgnums stored in 'msgs' */ int alloc_msgs; /* Currently allocated size of array */ + int unread_oments; };