mirror of https://github.com/x64dbg/zydis
Renamed ZydisFormatFlags -> ZydisFormatterFlags
This commit is contained in:
parent
4e78d04788
commit
f4959072dc
|
@ -61,7 +61,7 @@ enum ZydisFormatterStyles
|
|||
/**
|
||||
* @brief Defines the @c ZydisFormatFlags datatype.
|
||||
*/
|
||||
typedef uint32_t ZydisFormatFlags;
|
||||
typedef uint32_t ZydisFormatterFlags;
|
||||
|
||||
/**
|
||||
* @brief Formats the instruction in uppercase instead of lowercase.
|
||||
|
@ -378,7 +378,7 @@ typedef ZydisStatus (*ZydisFormatterFormatAddressFunc)(ZydisInstructionFormatter
|
|||
*/
|
||||
struct ZydisInstructionFormatter_
|
||||
{
|
||||
ZydisFormatFlags flags;
|
||||
ZydisFormatterFlags flags;
|
||||
ZydisFormatterAddressFormat addressFormat;
|
||||
ZydisFormatterDisplacementFormat displacementFormat;
|
||||
ZydisFormatterImmediateFormat immediateFormat;
|
||||
|
@ -431,7 +431,7 @@ ZYDIS_EXPORT ZydisStatus ZydisFormatterInitInstructionFormatter(
|
|||
* @return A zydis status code.
|
||||
*/
|
||||
ZYDIS_EXPORT ZydisStatus ZydisFormatterInitInstructionFormatterEx(
|
||||
ZydisInstructionFormatter* formatter, ZydisFormatterStyle style, ZydisFormatFlags flags,
|
||||
ZydisInstructionFormatter* formatter, ZydisFormatterStyle style, ZydisFormatterFlags flags,
|
||||
ZydisFormatterAddressFormat addressFormat, ZydisFormatterDisplacementFormat displacementFormat,
|
||||
ZydisFormatterImmediateFormat immmediateFormat);
|
||||
|
||||
|
|
|
@ -816,7 +816,7 @@ ZydisStatus ZydisFormatterInitInstructionFormatter(
|
|||
}
|
||||
|
||||
ZydisStatus ZydisFormatterInitInstructionFormatterEx(
|
||||
ZydisInstructionFormatter* formatter, ZydisFormatterStyle style, ZydisFormatFlags flags,
|
||||
ZydisInstructionFormatter* formatter, ZydisFormatterStyle style, ZydisFormatterFlags flags,
|
||||
ZydisFormatterAddressFormat addressFormat, ZydisFormatterDisplacementFormat displacementFormat,
|
||||
ZydisFormatterImmediateFormat immmediateFormat)
|
||||
{
|
||||
|
|
|
@ -43,7 +43,7 @@ typedef struct ZydisFuzzControlBlock_ {
|
|||
ZydisDisassemblerMode disasMode;
|
||||
ZydisDecoderFlags decoderFlags;
|
||||
ZydisFormatterStyle formatterStyle;
|
||||
ZydisFormatFlags formatterFlags;
|
||||
ZydisFormatterFlags formatterFlags;
|
||||
ZydisFormatterAddressFormat formatterAddrFormat;
|
||||
ZydisFormatterDisplacementFormat formatterDispFormat;
|
||||
ZydisFormatterImmediateFormat formatterImmFormat;
|
||||
|
|
Loading…
Reference in New Issue