view plugins/mono/loader/mono-glue.h @ 12949:9a5b9680aaeb

[gaim-migrate @ 15302] SF Patch #1406080 from Sadrul "Gaim leaks when you are away on AIM without any away message and autoreply is enabled for `When Away'. This patch fixes that. It also updates the timestamp for last-sent autoreply only when the autoreply was actually sent." It also removes some duplicated code. I tweaked a couple other things in the function to narrow variable scope a little more. It looked good and even compiled. What more can you ask for? committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Thu, 19 Jan 2006 07:36:38 +0000
parents 67fbd2ff4c4e
children
line wrap: on
line source

#ifndef _GAIM_MONO_LOADER_GLUE_H_
#define _GAIM_MONO_LOADER_GLUE_H_

#include <mono/jit/jit.h>
#include <mono/metadata/object.h>
#include <mono/metadata/environment.h>
#include <mono/metadata/assembly.h>

void gaim_debug_glue(int type, MonoString *cat, MonoString *str);

int gaim_signal_connect_glue(MonoObject *h, MonoObject *plugin, MonoString *signal, MonoObject *func);

MonoObject* gaim_blist_get_handle_glue(void);

MonoObject* gaim_blist_build_buddy_object(void* buddy);

MonoObject* gaim_status_build_status_object(void* data);

#endif