From 71b21c4301197a5fa2a3eb9ed862e468ee1b7bd7 Mon Sep 17 00:00:00 2001 From: flobernd Date: Sat, 2 Dec 2017 06:40:40 +0100 Subject: [PATCH] Renamed `ZydisInternalString` to `ZydisGeneratedString` --- src/Generated/EnumMnemonic.inc | 2 +- src/Mnemonic.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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)