少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
 * \file
 */
 
#ifndef __MONO_DEBUGGER_AGENT_H__
#define __MONO_DEBUGGER_AGENT_H__
 
#ifndef RUNTIME_IL2CPP
#include "mini.h"
#endif
 
#include "il2cpp-compat.h"
#include <mono/utils/mono-stack-unwinding.h>
 
MONO_API void
mono_debugger_agent_parse_options (char *options);
 
#ifdef RUNTIME_IL2CPP
void
mono_debugger_run_debugger_thread_func(void* arg);
#endif // RUNTIME_IL2CPP
 
void
mono_debugger_agent_init (void);
 
void
mono_debugger_agent_breakpoint_hit (void *sigctx);
 
void
mono_debugger_agent_single_step_event (void *sigctx);
 
void
#ifndef RUNTIME_IL2CPP
debugger_agent_single_step_from_context (MonoContext *ctx);
#else
debugger_agent_single_step_from_context (MonoContext *ctx, Il2CppSequencePoint* sequencePoint);
#endif
 
void
debugger_agent_breakpoint_from_context (MonoContext *ctx);
 
void
mono_debugger_agent_free_domain_info (MonoDomain *domain);
 
#if defined(HOST_ANDROID) || defined(TARGET_ANDROID)
void
mono_debugger_agent_unhandled_exception (MonoException *exc);
#endif
 
void
mono_debugger_agent_handle_exception (MonoException *exc, MonoContext *throw_ctx,
                                      MonoContext *catch_ctx, StackFrameInfo *catch_frame);
 
void
mono_debugger_agent_begin_exception_filter (MonoException *exc, MonoContext *ctx, MonoContext *orig_ctx);
 
void
mono_debugger_agent_end_exception_filter (MonoException *exc, MonoContext *ctx, MonoContext *orig_ctx);
 
void
mono_debugger_agent_user_break (void);
 
void
mono_debugger_agent_debug_log (int level, MonoString *category, MonoString *message);
 
gboolean
mono_debugger_agent_debug_log_is_enabled (void);
 
MONO_API gboolean
mono_debugger_agent_transport_handshake (void);
 
#endif