Removed an unused parameter from CtdlSubmitMsg(). Why was it even there?
[citadel.git] / citadel / msgbase.h
index ec22c202018178c6e1b8cf57d5386e9fc2be58ff..c83b6e2058854258bf2080fb34184c677457bbb1 100644 (file)
@@ -60,7 +60,6 @@ struct repl {                 /* Info for replication checking */
 };
 
 
-
 /*
  * This is a list of "harvested" email addresses that we might want to
  * stick into someone's address book.  But we defer this operaiton so
@@ -79,7 +78,7 @@ void memfmout (char *mptr, const char *nl);
 void output_mime_parts(char *);
 long send_message (struct CtdlMessage *);
 void loadtroom (void);
-long CtdlSubmitMsg(struct CtdlMessage *, recptypes *, const char *, int);
+long CtdlSubmitMsg(struct CtdlMessage *, recptypes *, const char *);
 long quickie_message(const char *from, const char *fromaddr, const char *to, char *room, const char *text, int format_type, const char *subject);
 void GetMetaData(struct MetaData *, long);
 void PutMetaData(struct MetaData *);
@@ -106,7 +105,7 @@ void CtdlWriteObject(char *req_room,                        /* Room to stuff it in */
                        int is_unique,                  /* Del others of this type? */
                        unsigned int flags              /* Internal save flags */
 );
-struct CtdlMessage *CtdlFetchMessage(long msgnum, int with_body, int run_msg_hooks);
+struct CtdlMessage *CtdlFetchMessage(long msgnum, int with_body);
 struct CtdlMessage * CM_Duplicate
                        (struct CtdlMessage *OrgMsg);
 int  CM_IsEmpty        (struct CtdlMessage *Msg, eMsgField which);
@@ -226,5 +225,6 @@ struct CtdlMessage *CtdlMakeMessageLen(
        long reflen
 );
 
+void AdjRefCountList(long *msgnum, long nmsg, int incr);
 
 #endif /* MSGBASE_H */