mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
9 lines
407 B
C#
9 lines
407 B
C#
namespace Cosmos.IL2CPU {
|
|
public static class KernelPanics {
|
|
public static readonly uint VMT_MethodNotFound = 0x1;
|
|
public static readonly uint VMT_MethodFoundButAddressInvalid = 0x2;
|
|
public static readonly uint VMT_MethodAddressesNull = 0x3;
|
|
public static readonly uint VMT_MethodIndexesNull = 0x4;
|
|
public static readonly uint VMT_TypeIdInvalid = 0x5;
|
|
}
|
|
}
|