]> code.citadel.org Git - citadel.git/blobdiff - webcit/blogview_renderer.c
Moved the struct declarations from blogview_renderer.c into webcit.h
[citadel.git] / webcit / blogview_renderer.c
index 438e3d49eeac94569cce3ed390c6ed3f64de2955..1320c5497a92b95555e96da34fba958fb4fd2858 100644 (file)
 #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)
 {