view libpurple/plugins/mono/loader/status-glue.c @ 27302:377e063ecda5

Convert the yahoo prpl to using the debug convenience functions instead of purple_debug().
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sun, 05 Jul 2009 02:23:43 +0000
parents 32c366eeeb99
children a8cc50c2279f
line wrap: on
line source

#include "status.h"
#include "mono-helper.h"
#include "mono-glue.h"

MonoObject* purple_status_build_status_object(void* data)
{
	MonoObject *obj = NULL;
	PurpleStatus *status = (PurpleStatus*)data;
	
	obj = ml_create_api_object("Status");
	g_return_val_if_fail(obj != NULL, NULL);
		
	ml_set_prop_string(obj, "Id", (char*)purple_status_get_id(status));
	
	return obj;
}