diff --git a/src/Generated/EnumMnemonic.inc b/src/Generated/EnumMnemonic.inc index 682b3e0..d2c1605 100644 --- a/src/Generated/EnumMnemonic.inc +++ b/src/Generated/EnumMnemonic.inc @@ -1,4 +1,4 @@ -static const ZydisInternalString zydisMnemonicStrings[] = +static const ZydisGeneratedString zydisMnemonicStrings[] = { { "invalid", 0x07 }, { "aaa", 0x03 }, diff --git a/src/Mnemonic.c b/src/Mnemonic.c index e659ce0..26dd743 100644 --- a/src/Mnemonic.c +++ b/src/Mnemonic.c @@ -33,9 +33,9 @@ #pragma pack(push, 1) /** - * @brief Defines the `ZydisInternalString` struct. + * @brief Defines the `ZydisGeneratedString` struct. */ -typedef struct ZydisInternalString_ +typedef struct ZydisGeneratedString_ { /** * @brief Contains the actual string. @@ -45,7 +45,7 @@ typedef struct ZydisInternalString_ * @brief The length of the string (without 0-termination). */ ZydisU8 length; -} ZydisInternalString; +} ZydisGeneratedString; #pragma pack(pop)