24 lines
583 B
C#
24 lines
583 B
C#
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace Mono
|
|
{
|
|
// Token: 0x020000F8 RID: 248
|
|
internal class Runtime
|
|
{
|
|
// Token: 0x06000C5F RID: 3167
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
private static extern void mono_runtime_install_handlers();
|
|
|
|
// Token: 0x06000C60 RID: 3168 RVA: 0x000383E8 File Offset: 0x000365E8
|
|
internal static void InstallSignalHandlers()
|
|
{
|
|
Runtime.mono_runtime_install_handlers();
|
|
}
|
|
|
|
// Token: 0x06000C61 RID: 3169
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
internal static extern string GetDisplayName();
|
|
}
|
|
}
|