view libpurple/plugins/mono/loader/status-glue.c @ 28555:3f1d39bac4cd

Make the default themes' names consistent with the default smiley theme.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Wed, 11 Nov 2009 19:48:59 +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;
}