mirror of https://github.com/x64dbg/zydis
Renamed `ZydisInternalString` to `ZydisGeneratedString`
This commit is contained in:
parent
02030c3b92
commit
71b21c4301
|
@ -1,4 +1,4 @@
|
|||
static const ZydisInternalString zydisMnemonicStrings[] =
|
||||
static const ZydisGeneratedString zydisMnemonicStrings[] =
|
||||
{
|
||||
{ "invalid", 0x07 },
|
||||
{ "aaa", 0x03 },
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue