mirror of https://github.com/x64dbg/zydis
Moved internal headers
This commit is contained in:
parent
618557a814
commit
346b7fec10
|
@ -109,12 +109,12 @@ target_sources("Zydis"
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Utils.h"
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Utils.h"
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Zydis.h"
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Zydis.h"
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Internal/LibC.h"
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Internal/LibC.h"
|
||||||
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Internal/SharedData.h"
|
||||||
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Internal/InternalTypes.h"
|
||||||
PRIVATE
|
PRIVATE
|
||||||
"src/InternalTypes.h"
|
|
||||||
"src/MetaInfo.c"
|
"src/MetaInfo.c"
|
||||||
"src/Mnemonic.c"
|
"src/Mnemonic.c"
|
||||||
"src/Register.c"
|
"src/Register.c"
|
||||||
"src/SharedData.h"
|
|
||||||
"src/SharedData.c"
|
"src/SharedData.c"
|
||||||
"src/String.c"
|
"src/String.c"
|
||||||
"src/Utils.c"
|
"src/Utils.c"
|
||||||
|
@ -126,9 +126,9 @@ if (ZYDIS_FEATURE_DECODER)
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Decoder.h"
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Decoder.h"
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/DecoderTypes.h"
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/DecoderTypes.h"
|
||||||
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Formatter.h"
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Formatter.h"
|
||||||
|
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Internal/DecoderData.h"
|
||||||
PRIVATE
|
PRIVATE
|
||||||
"src/Decoder.c"
|
"src/Decoder.c"
|
||||||
"src/DecoderData.h"
|
|
||||||
"src/DecoderData.c"
|
"src/DecoderData.c"
|
||||||
"src/Formatter.c")
|
"src/Formatter.c")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
|
|
||||||
***************************************************************************************************/
|
***************************************************************************************************/
|
||||||
|
|
||||||
#ifndef ZYDIS_DECODERDATA_H
|
#ifndef ZYDIS_INTERNAL_DECODERDATA_H
|
||||||
#define ZYDIS_DECODERDATA_H
|
#define ZYDIS_INTERNAL_DECODERDATA_H
|
||||||
|
|
||||||
#include <Zydis/Defines.h>
|
#include <Zydis/Defines.h>
|
||||||
#include <Zydis/DecoderTypes.h>
|
#include <Zydis/DecoderTypes.h>
|
||||||
|
@ -311,4 +311,4 @@ ZYDIS_NO_EXPORT void ZydisGetInstructionEncodingInfo(const ZydisDecoderTreeNode*
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* ZYDIS_DECODERDATA_H */
|
#endif /* ZYDIS_INTERNAL_DECODERDATA_H */
|
|
@ -24,8 +24,8 @@
|
||||||
|
|
||||||
***************************************************************************************************/
|
***************************************************************************************************/
|
||||||
|
|
||||||
#ifndef ZYDIS_INTERNALTYPES_H
|
#ifndef ZYDIS_INTERNAL_INTERNALTYPES_H
|
||||||
#define ZYDIS_INTERNALTYPES_H
|
#define ZYDIS_INTERNAL_INTERNALTYPES_H
|
||||||
|
|
||||||
#include <Zydis/CommonTypes.h>
|
#include <Zydis/CommonTypes.h>
|
||||||
#include <Zydis/Defines.h>
|
#include <Zydis/Defines.h>
|
||||||
|
@ -100,4 +100,4 @@ ZYDIS_NO_EXPORT ZYDIS_INLINE void ZydisStringInitWithGeneratedString(ZydisString
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* ZYDIS_INTERNALTYPES_H */
|
#endif /* ZYDIS_INTERNAL_INTERNALTYPES_H */
|
|
@ -24,8 +24,8 @@
|
||||||
|
|
||||||
***************************************************************************************************/
|
***************************************************************************************************/
|
||||||
|
|
||||||
#ifndef ZYDIS_LIBC_H
|
#ifndef ZYDIS_INTERNAL_LIBC_H
|
||||||
#define ZYDIS_LIBC_H
|
#define ZYDIS_INTERNAL_LIBC_H
|
||||||
|
|
||||||
#include <Zydis/Defines.h>
|
#include <Zydis/Defines.h>
|
||||||
|
|
||||||
|
@ -79,4 +79,4 @@ ZYDIS_INLINE ZydisUSize ZydisStrLen(const char* str)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* ZYDIS_LIBC_H */
|
#endif /* ZYDIS_INTERNAL_LIBC_H */
|
||||||
|
|
|
@ -24,8 +24,8 @@
|
||||||
|
|
||||||
***************************************************************************************************/
|
***************************************************************************************************/
|
||||||
|
|
||||||
#ifndef ZYDIS_SHAREDDATA_H
|
#ifndef ZYDIS_INTERNAL_SHAREDDATA_H
|
||||||
#define ZYDIS_SHAREDDATA_H
|
#define ZYDIS_INTERNAL_SHAREDDATA_H
|
||||||
|
|
||||||
#include <Zydis/Defines.h>
|
#include <Zydis/Defines.h>
|
||||||
#include <Zydis/Mnemonic.h>
|
#include <Zydis/Mnemonic.h>
|
||||||
|
@ -717,4 +717,4 @@ ZYDIS_NO_EXPORT void ZydisGetAccessedFlags(const ZydisInstructionDefinition* def
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* ZYDIS_SHAREDDATA_H */
|
#endif /* ZYDIS_INTERNAL_SHAREDDATA_H */
|
|
@ -27,8 +27,8 @@
|
||||||
#include <Zydis/Decoder.h>
|
#include <Zydis/Decoder.h>
|
||||||
#include <Zydis/Status.h>
|
#include <Zydis/Status.h>
|
||||||
#include <Zydis/Internal/LibC.h>
|
#include <Zydis/Internal/LibC.h>
|
||||||
#include <DecoderData.h>
|
#include <Zydis/Internal/DecoderData.h>
|
||||||
#include <SharedData.h>
|
#include <Zydis/Internal/SharedData.h>
|
||||||
|
|
||||||
/* ============================================================================================== */
|
/* ============================================================================================== */
|
||||||
/* Internal enums and types */
|
/* Internal enums and types */
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
***************************************************************************************************/
|
***************************************************************************************************/
|
||||||
|
|
||||||
#include <DecoderData.h>
|
#include <Zydis/Internal/DecoderData.h>
|
||||||
|
|
||||||
/* ============================================================================================== */
|
/* ============================================================================================== */
|
||||||
/* Data tables */
|
/* Data tables */
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
***************************************************************************************************/
|
***************************************************************************************************/
|
||||||
|
|
||||||
#include <Zydis/Mnemonic.h>
|
#include <Zydis/Mnemonic.h>
|
||||||
#include <InternalTypes.h>
|
#include <Zydis/Internal/InternalTypes.h>
|
||||||
|
|
||||||
#include <Generated/EnumMnemonic.inc>
|
#include <Generated/EnumMnemonic.inc>
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
|
|
||||||
***************************************************************************************************/
|
***************************************************************************************************/
|
||||||
|
|
||||||
#include <SharedData.h>
|
#include <Zydis/Internal/SharedData.h>
|
||||||
|
|
||||||
/* ============================================================================================== */
|
/* ============================================================================================== */
|
||||||
/* Data tables */
|
/* Data tables */
|
||||||
|
|
Loading…
Reference in New Issue