view libpurple/plugins/perl/common/Whiteboard.xs @ 25262:df6d3c3574ce

Make Purple::PluginPref->get_bounds be more perl-like. It no longer expects to be called as: $ppref->get_bounds($min, $max) or $ppref->get_bounds(\$min, \$max) (I'm not even sure which one of those was intended to be correct, but apparently they both crash.) It now expects to be called like this: my ($min, $max) = $ppref->get_bounds();
author Etan Reisner <pidgin@unreliablesource.net>
date Tue, 06 Jan 2009 05:36:39 +0000
parents 9d7ebd28d339
children
line wrap: on
line source

#include "module.h"

MODULE = Purple::Whiteboard  PACKAGE = Purple::Whiteboard  PREFIX = purple_whiteboard_
PROTOTYPES: ENABLE

void
purple_whiteboard_clear(wb)
	Purple::Whiteboard wb

Purple::Whiteboard
purple_whiteboard_create(account, who, state)
	Purple::Account account
	const char* who
	int state

void
purple_whiteboard_destroy(wb)
	Purple::Whiteboard wb

void
purple_whiteboard_draw_line(wb, x1, y1, x2, y2, color, size)
	Purple::Whiteboard wb
	int x1
	int y1
	int x2
	int y2
	int color
	int size

void
purple_whiteboard_draw_point(wb, x, y, color, size)
	Purple::Whiteboard wb
	int x
	int y
	int color
	int size

Purple::Whiteboard
purple_whiteboard_get_session(account, who)
	Purple::Account account
	const char* who

void
purple_whiteboard_send_brush(wb, size, color)
	Purple::Whiteboard wb
	int size
	int color

void
purple_whiteboard_send_clear(wb)
	Purple::Whiteboard wb

void
purple_whiteboard_set_brush(wb, size, color)
	Purple::Whiteboard wb
	int size
	int color

void
purple_whiteboard_set_dimensions(wb, width, height)
	Purple::Whiteboard wb
	int width
	int height

gboolean
purple_whiteboard_get_brush(wb, OUTLIST int size, OUTLIST int color)
	Purple::Whiteboard wb
	PROTOTYPE: $

gboolean
purple_whiteboard_get_dimensions(wb, OUTLIST int width, OUTLIST int height)
	Purple::Whiteboard wb
	PROTOTYPE: $

void
purple_whiteboard_start(wb)
	Purple::Whiteboard wb