Renamed `ZydisInternalString` to `ZydisGeneratedString`

This commit is contained in:
flobernd 2017-12-02 06:40:40 +01:00
parent 02030c3b92
commit 71b21c4301
No known key found for this signature in database
GPG Key ID: 9C3AE0ED4A969F10
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
static const ZydisInternalString zydisMnemonicStrings[] = static const ZydisGeneratedString zydisMnemonicStrings[] =
{ {
{ "invalid", 0x07 }, { "invalid", 0x07 },
{ "aaa", 0x03 }, { "aaa", 0x03 },

View File

@ -33,9 +33,9 @@
#pragma pack(push, 1) #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. * @brief Contains the actual string.
@ -45,7 +45,7 @@ typedef struct ZydisInternalString_
* @brief The length of the string (without 0-termination). * @brief The length of the string (without 0-termination).
*/ */
ZydisU8 length; ZydisU8 length;
} ZydisInternalString; } ZydisGeneratedString;
#pragma pack(pop) #pragma pack(pop)