view plugins/perl/common/Notify.xs @ 13709:ff25f6d2b484

[gaim-migrate @ 16113] CID 154: File: gaim/src/prefs.c Function: gaim_prefs_rename_boolean_toggle Description: Pointer returned from "find_pref" is never used newpref was only examined in g_return_if_fail() statements, which can be compiled out. It's probably safer to do these sanity checks all the time, given that plugins could call this, etc. etc. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 01 May 2006 20:27:49 +0000
parents 96f9b4798012
children
line wrap: on
line source

#include "module.h"

MODULE = Gaim::Notify  PACKAGE = Gaim::Notify  PREFIX = gaim_notify_
PROTOTYPES: ENABLE

void
gaim_notify_close(type, ui_handle)
	Gaim::NotifyType type
	void * ui_handle

void
gaim_notify_close_with_handle(handle)
	void * handle

void *
gaim_notify_email(handle, subject, from, to, url, cb, user_data)
	void * handle
	const char *subject
	const char *from
	const char *to
	const char *url
	Gaim::NotifyCloseCallback cb
	gpointer user_data

void *
gaim_notify_emails(handle, count, detailed, subjects, froms, tos, urls, cb, user_data)
	void * handle
	size_t count
	gboolean detailed
	const char **subjects
	const char **froms
	const char **tos
	const char **urls
	Gaim::NotifyCloseCallback cb
	gpointer user_data

void *
gaim_notify_formatted(handle, title, primary, secondary, text, cb, user_data)
	void * handle
	const char *title
	const char *primary
	const char *secondary
	const char *text
	Gaim::NotifyCloseCallback cb
	gpointer user_data

Gaim::NotifyUiOps
gaim_notify_get_ui_ops()


void *
gaim_notify_message(handle, type, title, primary, secondary, cb, user_data)
	void * handle
	Gaim::NotifyMsgType type
	const char *title
	const char *primary
	const char *secondary
	Gaim::NotifyCloseCallback cb
	gpointer user_data

void *
gaim_notify_searchresults(gc, title, primary, secondary, results, cb, user_data)
	Gaim::Connection gc
	const char *title
	const char *primary
	const char *secondary
	Gaim::NotifySearchResults results
	Gaim::NotifyCloseCallback cb
	gpointer user_data

void
gaim_notify_set_ui_ops(ops)
	Gaim::NotifyUiOps ops

void *
gaim_notify_uri(handle, uri)
	void * handle
	const char *uri

void *
gaim_notify_userinfo(gc, who, text, cb, user_data)
	Gaim::Connection gc
	const char *who
	const char *text
	Gaim::NotifyCloseCallback cb
	gpointer user_data