2025-03-31 14:55:24 +08:00
|
|
|
|
|
|
|
|
|
|
namespace HybridCLR
|
|
|
|
|
|
{
|
|
|
|
|
|
public enum LoadImageErrorCode
|
|
|
|
|
|
{
|
|
|
|
|
|
OK = 0,
|
2025-06-12 18:00:06 +08:00
|
|
|
|
BAD_IMAGE, // invalid dll file
|
|
|
|
|
|
NOT_IMPLEMENT, // not implement feature
|
|
|
|
|
|
AOT_ASSEMBLY_NOT_FIND, // AOT assembly not found
|
|
|
|
|
|
HOMOLOGOUS_ONLY_SUPPORT_AOT_ASSEMBLY, // can not load supplementary metadata assembly for non-AOT assembly
|
|
|
|
|
|
HOMOLOGOUS_ASSEMBLY_HAS_LOADED, // can not load supplementary metadata assembly for the same assembly
|
|
|
|
|
|
INVALID_HOMOLOGOUS_MODE, // invalid homologous image mode
|
|
|
|
|
|
PDB_BAD_FILE, // invalid pdb file
|
2026-04-13 22:59:23 +08:00
|
|
|
|
UNKNOWN_IMAGE_FORMAT,
|
|
|
|
|
|
UNSUPPORT_FORMAT_VERSION,
|
|
|
|
|
|
UNMATCH_FORMAT_VARIANT,
|
2025-06-12 18:00:06 +08:00
|
|
|
|
};
|
2025-03-31 14:55:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|