X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fwebcit.h;h=624b1189383c2345f6c89a085cf0adcf30b9abba;hb=3cf89d4ed1bf883353080ec945a28c0022461a4b;hp=48974d07aa098eca53cc4f9ad9b5646c65d903aa;hpb=bf69443eb3c3fad842877f046eeb15f213613306;p=citadel.git diff --git a/webcit/webcit.h b/webcit/webcit.h index 48974d07a..624b11893 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -510,8 +510,6 @@ struct wcsession { HashList *InetCfg; /* Our inet server config for editing */ ExpirePolicy Policy[maxpolicy]; -/* used by the blog viewer */ - int bptlid; /* hash of thread currently being rendered */ }; @@ -687,7 +685,7 @@ void check_thread_pool_size(void); void StrEndTab(StrBuf *Target, int tabnum, int num_tabs); void StrBeginTab(StrBuf *Target, int tabnum, int num_tabs, StrBuf **Names); void StrTabbedDialog(StrBuf *Target, int num_tabs, StrBuf *tabnames[]); -void tabbed_dialog(int num_tabs, char *tabnames[]); +void tabbed_dialog(int num_tabs, const char *tabnames[]); void begin_tab(int tabnum, int num_tabs); void end_tab(int tabnum, int num_tabs); @@ -734,29 +732,6 @@ void http_datestring(char *buf, size_t n, time_t xtime); extern int time_to_die; /* Nonzero if server is shutting down */ extern int DisableGzip; -/* - * Array type for a blog post. The first message is the post; the rest are comments - */ -struct blogpost { - int top_level_id; - 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; -}; - - -/* - * Data which gets returned from a call to blogview_learn_thread_references() - */ -struct bltr { - int id; - int refs; -}; - - -struct bltr blogview_learn_thread_references(long msgnum); -void tmplput_blog_permalink(StrBuf *Target, WCTemplputParams *TP); void display_summary_page(void); HashList *GetValidDomainNames(StrBuf *Target, WCTemplputParams *TP);