Moved internal headers

This commit is contained in:
Joel Höner 2017-12-02 19:26:26 +01:00
parent 618557a814
commit 346b7fec10
9 changed files with 20 additions and 20 deletions

View File

@ -109,12 +109,12 @@ target_sources("Zydis"
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Utils.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/SharedData.h"
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Internal/InternalTypes.h"
PRIVATE
"src/InternalTypes.h"
"src/MetaInfo.c"
"src/Mnemonic.c"
"src/Register.c"
"src/SharedData.h"
"src/SharedData.c"
"src/String.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/DecoderTypes.h"
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Formatter.h"
"${CMAKE_CURRENT_LIST_DIR}/include/Zydis/Internal/DecoderData.h"
PRIVATE
"src/Decoder.c"
"src/DecoderData.h"
"src/DecoderData.c"
"src/Formatter.c")
endif ()

View File

@ -24,8 +24,8 @@
***************************************************************************************************/
#ifndef ZYDIS_DECODERDATA_H
#define ZYDIS_DECODERDATA_H
#ifndef ZYDIS_INTERNAL_DECODERDATA_H
#define ZYDIS_INTERNAL_DECODERDATA_H
#include <Zydis/Defines.h>
#include <Zydis/DecoderTypes.h>
@ -311,4 +311,4 @@ ZYDIS_NO_EXPORT void ZydisGetInstructionEncodingInfo(const ZydisDecoderTreeNode*
}
#endif
#endif /* ZYDIS_DECODERDATA_H */
#endif /* ZYDIS_INTERNAL_DECODERDATA_H */

View File

@ -24,8 +24,8 @@
***************************************************************************************************/
#ifndef ZYDIS_INTERNALTYPES_H
#define ZYDIS_INTERNALTYPES_H
#ifndef ZYDIS_INTERNAL_INTERNALTYPES_H
#define ZYDIS_INTERNAL_INTERNALTYPES_H
#include <Zydis/CommonTypes.h>
#include <Zydis/Defines.h>
@ -100,4 +100,4 @@ ZYDIS_NO_EXPORT ZYDIS_INLINE void ZydisStringInitWithGeneratedString(ZydisString
}
#endif
#endif /* ZYDIS_INTERNALTYPES_H */
#endif /* ZYDIS_INTERNAL_INTERNALTYPES_H */

View File

@ -24,8 +24,8 @@
***************************************************************************************************/
#ifndef ZYDIS_LIBC_H
#define ZYDIS_LIBC_H
#ifndef ZYDIS_INTERNAL_LIBC_H
#define ZYDIS_INTERNAL_LIBC_H
#include <Zydis/Defines.h>
@ -79,4 +79,4 @@ ZYDIS_INLINE ZydisUSize ZydisStrLen(const char* str)
#endif
#endif /* ZYDIS_LIBC_H */
#endif /* ZYDIS_INTERNAL_LIBC_H */

View File

@ -24,8 +24,8 @@
***************************************************************************************************/
#ifndef ZYDIS_SHAREDDATA_H
#define ZYDIS_SHAREDDATA_H
#ifndef ZYDIS_INTERNAL_SHAREDDATA_H
#define ZYDIS_INTERNAL_SHAREDDATA_H
#include <Zydis/Defines.h>
#include <Zydis/Mnemonic.h>
@ -717,4 +717,4 @@ ZYDIS_NO_EXPORT void ZydisGetAccessedFlags(const ZydisInstructionDefinition* def
}
#endif
#endif /* ZYDIS_SHAREDDATA_H */
#endif /* ZYDIS_INTERNAL_SHAREDDATA_H */

View File

@ -27,8 +27,8 @@
#include <Zydis/Decoder.h>
#include <Zydis/Status.h>
#include <Zydis/Internal/LibC.h>
#include <DecoderData.h>
#include <SharedData.h>
#include <Zydis/Internal/DecoderData.h>
#include <Zydis/Internal/SharedData.h>
/* ============================================================================================== */
/* Internal enums and types */

View File

@ -24,7 +24,7 @@
***************************************************************************************************/
#include <DecoderData.h>
#include <Zydis/Internal/DecoderData.h>
/* ============================================================================================== */
/* Data tables */

View File

@ -25,7 +25,7 @@
***************************************************************************************************/
#include <Zydis/Mnemonic.h>
#include <InternalTypes.h>
#include <Zydis/Internal/InternalTypes.h>
#include <Generated/EnumMnemonic.inc>

View File

@ -24,7 +24,7 @@
***************************************************************************************************/
#include <SharedData.h>
#include <Zydis/Internal/SharedData.h>
/* ============================================================================================== */
/* Data tables */