From: Art Cancro Date: Tue, 31 May 2011 17:58:56 +0000 (-0400) Subject: Moved the struct declarations from blogview_renderer.c into webcit.h X-Git-Tag: v8.11~685 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=35a2149318d4113c3a9597095594083485bd0fb1 Moved the struct declarations from blogview_renderer.c into webcit.h --- diff --git a/webcit/blogview_renderer.c b/webcit/blogview_renderer.c index 438e3d49e..1320c5497 100644 --- a/webcit/blogview_renderer.c +++ b/webcit/blogview_renderer.c @@ -23,17 +23,6 @@ #include "groupdav.h" -/* - * 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 */ -}; - - /* * Generate a permalink for a post * (Call with NULL arguments to make this function wcprintf() the permalink @@ -112,15 +101,6 @@ void blogpost_render_and_destroy(struct blogpost *bp) { } -/* - * Data which gets returned from a call to blogview_learn_thread_references() - */ -struct bltr { - int id; - int refs; -}; - - /* * Entry point for message read operations. */ @@ -146,8 +126,8 @@ int blogview_GetParamsGetServerCall(SharedMessageStatus *Stat, /* - * Given a 'struct blogpost' containing a msgnum, populate the id - * and refs fields by fetching them from the Citadel server + * Given a msgnum, populate the id and refs fields of + * a "struct bltr" by fetching them from the Citadel server */ struct bltr blogview_learn_thread_references(long msgnum) { diff --git a/webcit/webcit.h b/webcit/webcit.h index 61644a0a2..022ed2d83 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -886,3 +886,25 @@ void http_datestring(char *buf, size_t n, time_t xtime); #define WC_TIMEFORMAT_24 2 extern int time_to_die; /* Nonzero if server is shutting down */ + +/* + * 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 */ +}; + + +/* + * 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);