comparison libpurple/protocols/jabber/message.h @ 17845:2e0799b916b9

Fixed whitespace to match the coding convention used in libpurple
author Andreas Monitzer <pidgin@monitzer.com>
date Tue, 12 Jun 2007 01:25:46 +0000
parents a75079eae085
children b8de63d3bf89
comparison
equal deleted inserted replaced
17844:2f23a77eaa04 17845:2e0799b916b9
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */ 21 */
22 #ifndef _PURPLE_JABBER_MESSAGE_H_ 22 #ifndef _PURPLE_JABBER_MESSAGE_H_
23 #define _PURPLE_JABBER_MESSAGE_H_ 23 #define _PURPLE_JABBER_MESSAGE_H_
24 24
25 #include "buddy.h" 25 #include "buddy.h"
33 JABBER_MESSAGE_CHAT, 33 JABBER_MESSAGE_CHAT,
34 JABBER_MESSAGE_GROUPCHAT, 34 JABBER_MESSAGE_GROUPCHAT,
35 JABBER_MESSAGE_HEADLINE, 35 JABBER_MESSAGE_HEADLINE,
36 JABBER_MESSAGE_ERROR, 36 JABBER_MESSAGE_ERROR,
37 JABBER_MESSAGE_GROUPCHAT_INVITE, 37 JABBER_MESSAGE_GROUPCHAT_INVITE,
38 JABBER_MESSAGE_EVENT, 38 JABBER_MESSAGE_EVENT,
39 JABBER_MESSAGE_OTHER 39 JABBER_MESSAGE_OTHER
40 } type; 40 } type;
41 time_t sent; 41 time_t sent;
42 gboolean delayed; 42 gboolean delayed;
43 char *id; 43 char *id;
60 JM_STATE_PAUSED, 60 JM_STATE_PAUSED,
61 JM_STATE_INACTIVE, 61 JM_STATE_INACTIVE,
62 JM_STATE_GONE 62 JM_STATE_GONE
63 } chat_state; 63 } chat_state;
64 GList *etc; 64 GList *etc;
65 GList *eventitems; 65 GList *eventitems;
66 } JabberMessage; 66 } JabberMessage;
67 67
68 void jabber_message_free(JabberMessage *jm); 68 void jabber_message_free(JabberMessage *jm);
69 69
70 void jabber_message_send(JabberMessage *jm); 70 void jabber_message_send(JabberMessage *jm);