mirror of https://github.com/x64dbg/zydis
Added doxygen documentation for generated enum values
This commit is contained in:
parent
63f5b2f680
commit
6efd1ced36
|
@ -156,6 +156,13 @@ enum ZydisISAExts
|
|||
ZYDIS_ISA_EXT_XSAVEC,
|
||||
ZYDIS_ISA_EXT_XSAVEOPT,
|
||||
ZYDIS_ISA_EXT_XSAVES,
|
||||
|
||||
/**
|
||||
* @brief Maximum value of this enum.
|
||||
*/
|
||||
ZYDIS_ISA_EXT_MAX_VALUE = ZYDIS_ISA_EXT_XSAVES,
|
||||
/**
|
||||
* @brief Minimum amount of bits required to store a value of this enum.
|
||||
*/
|
||||
ZYDIS_ISA_EXT_MIN_BITS = 0x0008
|
||||
};
|
||||
|
|
|
@ -76,6 +76,13 @@ enum ZydisISASets
|
|||
ZYDIS_ISA_SET_XSAVEC,
|
||||
ZYDIS_ISA_SET_XSAVEOPT,
|
||||
ZYDIS_ISA_SET_XSAVES,
|
||||
|
||||
/**
|
||||
* @brief Maximum value of this enum.
|
||||
*/
|
||||
ZYDIS_ISA_SET_MAX_VALUE = ZYDIS_ISA_SET_XSAVES,
|
||||
/**
|
||||
* @brief Minimum amount of bits required to store a value of this enum.
|
||||
*/
|
||||
ZYDIS_ISA_SET_MIN_BITS = 0x0007
|
||||
};
|
||||
|
|
|
@ -100,6 +100,13 @@ enum ZydisInstructionCategories
|
|||
ZYDIS_CATEGORY_XOP,
|
||||
ZYDIS_CATEGORY_XSAVE,
|
||||
ZYDIS_CATEGORY_XSAVEOPT,
|
||||
|
||||
/**
|
||||
* @brief Maximum value of this enum.
|
||||
*/
|
||||
ZYDIS_CATEGORY_MAX_VALUE = ZYDIS_CATEGORY_XSAVEOPT,
|
||||
/**
|
||||
* @brief Minimum amount of bits required to store a value of this enum.
|
||||
*/
|
||||
ZYDIS_CATEGORY_MIN_BITS = 0x0007
|
||||
};
|
||||
|
|
|
@ -1591,6 +1591,13 @@ enum ZydisMnemonics
|
|||
ZYDIS_MNEMONIC_XSAVES64,
|
||||
ZYDIS_MNEMONIC_XSETBV,
|
||||
ZYDIS_MNEMONIC_XTEST,
|
||||
|
||||
/**
|
||||
* @brief Maximum value of this enum.
|
||||
*/
|
||||
ZYDIS_MNEMONIC_MAX_VALUE = ZYDIS_MNEMONIC_XTEST,
|
||||
/**
|
||||
* @brief Minimum amount of bits required to store a value of this enum.
|
||||
*/
|
||||
ZYDIS_MNEMONIC_MIN_BITS = 0x000B
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue