comparison libpurple/notify.h @ 20096:2a9f3a499b0d

merge of '34d642b12b7215d55fd032cd513a7e225715f19a' and '7868c3b2b7d17c52916e4bb76305b7e3b68d3904'
author Richard Laager <rlaager@wiktel.com>
date Mon, 17 Sep 2007 03:47:45 +0000
parents 6bf32c9e15a7
children a3f07fa68e90
comparison
equal deleted inserted replaced
19936:191fa8a8c0bc 20096:2a9f3a499b0d
1 /** 1 /**
2 * @file notify.h Notification API 2 * @file notify.h Notification API
3 * @ingroup core 3 * @ingroup core
4 * 4 */
5 * purple 5
6 /* purple
6 * 7 *
7 * Purple is the legal property of its developers, whose names are too numerous 8 * Purple is the legal property of its developers, whose names are too numerous
8 * to list here. Please refer to the COPYRIGHT file distributed with this 9 * to list here. Please refer to the COPYRIGHT file distributed with this
9 * source distribution. 10 * source distribution.
10 * 11 *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details. 20 * GNU General Public License for more details.
20 * 21 *
21 * You should have received a copy of the GNU General Public License 22 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software 23 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
24 * 25 *
25 * @see @ref notify-signals 26 * @see @ref notify-signals
26 */ 27 */
27 #ifndef _PURPLE_NOTIFY_H_ 28 #ifndef _PURPLE_NOTIFY_H_
28 #define _PURPLE_NOTIFY_H_ 29 #define _PURPLE_NOTIFY_H_
211 void *purple_notify_searchresults(PurpleConnection *gc, const char *title, 212 void *purple_notify_searchresults(PurpleConnection *gc, const char *title,
212 const char *primary, const char *secondary, 213 const char *primary, const char *secondary,
213 PurpleNotifySearchResults *results, PurpleNotifyCloseCallback cb, 214 PurpleNotifySearchResults *results, PurpleNotifyCloseCallback cb,
214 gpointer user_data); 215 gpointer user_data);
215 216
217 /**
218 * Frees a PurpleNotifySearchResults object.
219 *
220 * @param results The PurpleNotifySearchResults to free.
221 */
216 void purple_notify_searchresults_free(PurpleNotifySearchResults *results); 222 void purple_notify_searchresults_free(PurpleNotifySearchResults *results);
217 223
218 /** 224 /**
219 * Replace old rows with the new. Reuse an existing window. 225 * Replace old rows with the new. Reuse an existing window.
220 * 226 *