view plugins/perl/common/XMLNode.xs @ 12919:248b8b39c671

[gaim-migrate @ 15272] Replace GaimBlistNodeAction with the more generic GaimMenuAction, this is in preparation for letting the chat room user list have extensible menus like the blist entries do. (I know it's not exactly the prettiest, and the callback isn't exactly type-safe, when we eventually gobjectify everything we can get some safety back by using (GObject, gpointer) but that's for later.) I'm planning to look into merging GaimPluginActions into GaimMenuActions as well. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Tue, 17 Jan 2006 23:22:19 +0000
parents 96f9b4798012
children
line wrap: on
line source

#include "module.h"

MODULE = Gaim::XMLNode  PACKAGE = Gaim::XMLNode  PREFIX = xmlnode_
PROTOTYPES: ENABLE

Gaim::XMLNode
xmlnode_copy(class, src)
	xmlnode *src
    C_ARGS:
	src

void
xmlnode_free(node)
	xmlnode *node

Gaim::XMLNode
xmlnode_from_str(class, str, size)
	const char *str
	gssize size
    C_ARGS:
	str, size

const char *
xmlnode_get_attrib(node, attr)
	xmlnode *node
	const char *attr

Gaim::XMLNode
xmlnode_get_child(parent, name)
	const xmlnode *parent
	const char *name

Gaim::XMLNode
xmlnode_get_child_with_namespace(parent, name, xmlns)
	const xmlnode *parent
	const char *name
	const char *xmlns

char *
xmlnode_get_data(node)
	xmlnode *node

Gaim::XMLNode
xmlnode_get_next_twin(node)
	xmlnode *node

void
xmlnode_insert_child(parent, child)
	xmlnode *parent
	xmlnode *child

void
xmlnode_insert_data(node, data, size)
	xmlnode *node
	const char *data
	gssize size

Gaim::XMLNode
xmlnode_new(class, name)
	const char *name
    C_ARGS:
	name

Gaim::XMLNode
xmlnode_new_child(parent, name)
	xmlnode *parent
	const char *name

void
xmlnode_remove_attrib(node, attr)
	xmlnode *node
	const char *attr

void
xmlnode_set_attrib(node, attr, value)
	xmlnode *node
	const char *attr
	const char *value

char *
xmlnode_to_formatted_str(node, len)
	xmlnode *node
	int *len

char *
xmlnode_to_str(node, len)
	xmlnode *node
	int *len