comparison mcabber/src/histolog.h @ 1058:c0d44a9a99bc

Code cleanup Cosmetics. Mostly get rid of "jid" variables, as it is a structure pointer defined in libjabber/jabber.h.
author Mikael Berthe <mikael@lilotux.net>
date Thu, 30 Nov 2006 19:51:09 +0100
parents fed6d1e4d7a9
children 3b9bbf6c4c93
comparison
equal deleted inserted replaced
1057:4cdf19d9c74e 1058:c0d44a9a99bc
4 #include <glib.h> 4 #include <glib.h>
5 5
6 #include "jabglue.h" 6 #include "jabglue.h"
7 7
8 void hlog_enable(guint enable, const char *root_dir, guint loadfile); 8 void hlog_enable(guint enable, const char *root_dir, guint loadfile);
9 void hlog_read_history(const char *jid, GList **p_buddyhbuf, guint width); 9 void hlog_read_history(const char *bjid, GList **p_buddyhbuf, guint width);
10 inline void hlog_write_message(const char *jid, time_t timestamp, int sent, 10 inline void hlog_write_message(const char *bjid, time_t timestamp, int sent,
11 const char *msg); 11 const char *msg);
12 inline void hlog_write_status(const char *jid, time_t timestamp, 12 inline void hlog_write_status(const char *bjid, time_t timestamp,
13 enum imstatus status, const char *status_msg); 13 enum imstatus status, const char *status_msg);
14 14
15 #endif /* __HISTOLOG_H__ */ 15 #endif /* __HISTOLOG_H__ */
16 16
17 /* vim: set expandtab cindent cinoptions=>2\:2(0: For Vim users... */ 17 /* vim: set expandtab cindent cinoptions=>2\:2(0: For Vim users... */