Mercurial > pidgin
annotate src/protocols/novell/nmmessage.h @ 13678:299536c4caf1
[gaim-migrate @ 16080]
Set the SIP/SIMPLE user-agent string to something more that I think makes more sense, and set wants_to_die in two places when disconnecting. This causes the account to be disable until the user re-enables it.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sat, 22 Apr 2006 15:13:51 +0000 |
parents | 6663ad2386d9 |
children |
rev | line source |
---|---|
8675 | 1 /* |
2 * nmmessage.h | |
3 * | |
8933 | 4 * Copyright (c) 2004 Novell, Inc. All Rights Reserved. |
5 * | |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; version 2 of the License. | |
8675 | 9 * |
8933 | 10 * This program is distributed in the hope that it will be useful, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 * GNU General Public License for more details. | |
8684
046dd8ef2920
[gaim-migrate @ 9437]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
14 * |
8933 | 15 * You should have received a copy of the GNU General Public License |
16 * along with this program; if not, write to the Free Software | |
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
8675 | 18 * |
19 */ | |
20 | |
21 #ifndef __NM_MESSAGE_H__ | |
22 #define __NM_MESSAGE_H__ | |
23 | |
24 typedef struct _NMMessage NMMessage; | |
25 | |
26 #include "nmconference.h" | |
27 | |
28 /** | |
8684
046dd8ef2920
[gaim-migrate @ 9437]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
29 * Creates a new message. |
8675 | 30 * |
31 * The returned message should be released by calling | |
32 * nm_release_message | |
33 * | |
34 * @param text The message text | |
8684
046dd8ef2920
[gaim-migrate @ 9437]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
35 * @return A newly allocated message |
8675 | 36 */ |
37 NMMessage *nm_create_message(const char *text); | |
38 | |
39 /** | |
8933 | 40 * Increment the reference count for the message object. |
41 * | |
42 * @param msg The message | |
43 */ | |
44 void nm_message_add_ref(NMMessage * msg); | |
45 | |
46 /** | |
8675 | 47 * Releases a message. |
48 * | |
49 * @param msg The message | |
50 */ | |
51 void nm_release_message(NMMessage * msg); | |
52 | |
53 /** | |
54 * Returns the message text | |
55 * | |
56 * @param msg The message | |
57 * @return The message text | |
58 */ | |
59 const char *nm_message_get_text(NMMessage * msg); | |
60 | |
61 /** | |
62 * Sets the conference object for a message | |
63 * | |
64 * @param msg The message | |
65 * @param conf The conference to associate with the message | |
66 * @return RVALUE_OK on success | |
67 */ | |
68 void nm_message_set_conference(NMMessage * msg, NMConference * conf); | |
69 | |
70 /** | |
71 * Returns the conference object associated with the message | |
72 * | |
8684
046dd8ef2920
[gaim-migrate @ 9437]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
73 * Note: this does not increment the reference count for the |
046dd8ef2920
[gaim-migrate @ 9437]
Christian Hammond <chipx86@chipx86.com>
parents:
8675
diff
changeset
|
74 * conference and the conference should NOT be released with |
8675 | 75 * nm_release_conference. If the reference needs to be kept |
76 * around nm_conference_add_ref should be called. | |
77 * | |
78 * @param msg The message | |
79 * @return The conference associated with this message | |
80 */ | |
81 NMConference *nm_message_get_conference(NMMessage * msg); | |
82 | |
83 #endif |