mirror of https://github.com/x64dbg/zydis
Fixed doxygen comments for generated enums
This commit is contained in:
parent
71be8a1bc2
commit
3b5906f40e
|
@ -1,5 +1,11 @@
|
|||
/**
|
||||
* @brief Defines the `ZydisISAExt` datatype.
|
||||
*/
|
||||
typedef uint8_t ZydisISAExt;
|
||||
|
||||
/**
|
||||
* @brief Values that represent `ZydisISAExt` elements.
|
||||
*/
|
||||
enum ZydisISAExts
|
||||
{
|
||||
ZYDIS_ISA_EXT_INVALID,
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
/**
|
||||
* @brief Defines the `ZydisISASet` datatype.
|
||||
*/
|
||||
typedef uint8_t ZydisISASet;
|
||||
|
||||
/**
|
||||
* @brief Values that represent `ZydisISASet` elements.
|
||||
*/
|
||||
enum ZydisISASets
|
||||
{
|
||||
ZYDIS_ISA_SET_INVALID,
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
/**
|
||||
* @brief Defines the `ZydisInstructionCategory` datatype.
|
||||
*/
|
||||
typedef uint8_t ZydisInstructionCategory;
|
||||
|
||||
/**
|
||||
* @brief Values that represent `ZydisInstructionCategory` elements.
|
||||
*/
|
||||
enum ZydisInstructionCategories
|
||||
{
|
||||
ZYDIS_CATEGORY_INVALID,
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
/**
|
||||
* @brief Defines the `ZydisMnemonic` datatype.
|
||||
*/
|
||||
typedef uint16_t ZydisMnemonic;
|
||||
|
||||
/**
|
||||
* @brief Values that represent `ZydisMnemonic` elements.
|
||||
*/
|
||||
enum ZydisMnemonics
|
||||
{
|
||||
ZYDIS_MNEMONIC_INVALID,
|
||||
|
|
|
@ -43,19 +43,8 @@ extern "C" {
|
|||
/* Enums and types */
|
||||
/* ============================================================================================== */
|
||||
|
||||
/**
|
||||
* @brief Defines the @c ZydisInstructionCategory datatype.
|
||||
*/
|
||||
#include <Zydis/Generated/EnumInstructionCategory.h>
|
||||
|
||||
/**
|
||||
* @brief Defines the @c ZydisISASet datatype.
|
||||
*/
|
||||
#include <Zydis/Generated/EnumISASet.h>
|
||||
|
||||
/**
|
||||
* @brief Defines the @c ZydisISAExt datatype.
|
||||
*/
|
||||
#include <Zydis/Generated/EnumISAExt.h>
|
||||
|
||||
/* ============================================================================================== */
|
||||
|
|
|
@ -43,9 +43,6 @@ extern "C" {
|
|||
/* Enums and types */
|
||||
/* ============================================================================================== */
|
||||
|
||||
/**
|
||||
* @brief Defines the @c ZydisMnemonic datatype.
|
||||
*/
|
||||
#include <Zydis/Generated/EnumMnemonic.h>
|
||||
|
||||
/* ============================================================================================== */
|
||||
|
|
Loading…
Reference in New Issue