comparison mcabber/src/hooks.h @ 1398:f8321420ed7a

Remove useless inline's
author Mikael Berthe <mikael@lilotux.net>
date Thu, 13 Dec 2007 20:02:40 +0100
parents 61a54e172010
children b0cfd9ab4b9f
comparison
equal deleted inserted replaced
1397:5f91bac887ee 1398:f8321420ed7a
3 3
4 #include <time.h> 4 #include <time.h>
5 #include "jabglue.h" 5 #include "jabglue.h"
6 6
7 7
8 inline void hk_message_in(const char *bjid, const char *resname, 8 void hk_message_in(const char *bjid, const char *resname,
9 time_t timestamp, const char *msg, const char *type, 9 time_t timestamp, const char *msg, const char *type,
10 guint encrypted); 10 guint encrypted);
11 inline void hk_message_out(const char *bjid, const char *nickname, 11 void hk_message_out(const char *bjid, const char *nickname,
12 time_t timestamp, const char *msg, guint encrypted); 12 time_t timestamp, const char *msg, guint encrypted);
13 inline void hk_statuschange(const char *bjid, const char *resname, gchar prio, 13 void hk_statuschange(const char *bjid, const char *resname, gchar prio,
14 time_t timestamp, enum imstatus status, 14 time_t timestamp, enum imstatus status,
15 char const *status_msg); 15 char const *status_msg);
16 inline void hk_mystatuschange(time_t timestamp, 16 void hk_mystatuschange(time_t timestamp,
17 enum imstatus old_status, 17 enum imstatus old_status,
18 enum imstatus new_status, const char *msg); 18 enum imstatus new_status, const char *msg);
19 19
20 void hook_execute_internal(const char *hookname); 20 void hook_execute_internal(const char *hookname);
21 21