27 lines
323 B
C
27 lines
323 B
C
/**
|
|
* \file
|
|
*/
|
|
|
|
#ifndef __MONO_ATTACH_H__
|
|
#define __MONO_ATTACH_H__
|
|
|
|
#include <glib.h>
|
|
#include <mono/utils/mono-compiler.h>
|
|
|
|
void
|
|
mono_attach_parse_options (char *options);
|
|
|
|
void
|
|
mono_attach_init (void);
|
|
|
|
gboolean
|
|
mono_attach_start (void);
|
|
|
|
void
|
|
mono_attach_maybe_start (void);
|
|
|
|
void
|
|
mono_attach_cleanup (void);
|
|
|
|
#endif
|