Implement MachineKey.Protect and MachineKey.Unprotect
[mono.git] / mono / metadata / mono-debug-debugger.h
1 /*
2  * This is a private header file.
3  * The API in here is undocumented and may only be used by the JIT to
4  * communicate with the debugger.
5  */
6
7 #ifndef __MONO_DEBUG_DEBUGGER_H__
8 #define __MONO_DEBUG_DEBUGGER_H__
9
10 #include <mono/metadata/debug-helpers.h>
11 #include <mono/metadata/debug-mono-symfile.h>
12 #include <mono/utils/mono-compiler.h>
13
14
15 void            mono_debugger_initialize                    (void) MONO_INTERNAL;
16
17 void            mono_debugger_lock                          (void) MONO_INTERNAL;
18 void            mono_debugger_unlock                        (void) MONO_INTERNAL;
19
20 gchar *
21 mono_debugger_check_runtime_version (const char *filename) MONO_INTERNAL;
22
23 MonoDebugMethodAddressList *
24 mono_debugger_insert_method_breakpoint (MonoMethod *method, guint64 idx) MONO_INTERNAL;
25
26 int
27 mono_debugger_remove_method_breakpoint (guint64 index) MONO_INTERNAL;
28
29 #endif /* __MONO_DEBUG_DEBUGGER_H__ */