From 895f80996b4ba738dd99301764ddd0cd68fd18c9 Mon Sep 17 00:00:00 2001 From: mrexodia Date: Sat, 27 Aug 2016 21:32:57 +0200 Subject: [PATCH] fixed UE_DLLCHARACTERISTICS --- SDK/C/TitanEngine.h | 2 +- SDK/CPP/TitanEngine.h | 2 +- SDK/CPP/TitanEngine.hpp | 4 ++-- TitanEngine/stdafx.h | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SDK/C/TitanEngine.h b/SDK/C/TitanEngine.h index 3ed5b6e..2196ccd 100644 --- a/SDK/C/TitanEngine.h +++ b/SDK/C/TitanEngine.h @@ -109,6 +109,7 @@ #define UE_NUMBEROFRVAANDSIZES 22 #define UE_BASEOFCODE 23 #define UE_BASEOFDATA 24 +#define UE_DLLCHARACTERISTICS 25 //leaving some enum space here for future additions #define UE_SECTIONNAME 40 #define UE_SECTIONVIRTUALOFFSET 41 @@ -116,7 +117,6 @@ #define UE_SECTIONRAWOFFSET 43 #define UE_SECTIONRAWSIZE 44 #define UE_SECTIONFLAGS 45 -#define UE_DLLCHARACTERISTICS 46 #define UE_VANOTFOUND = -2; diff --git a/SDK/CPP/TitanEngine.h b/SDK/CPP/TitanEngine.h index 7901ce0..9d9da86 100644 --- a/SDK/CPP/TitanEngine.h +++ b/SDK/CPP/TitanEngine.h @@ -105,6 +105,7 @@ const BYTE UE_CHARACTERISTICS = 21; const BYTE UE_NUMBEROFRVAANDSIZES = 22; const BYTE UE_BASEOFCODE = 23; const BYTE UE_BASEOFDATA = 24; +const BYTE UE_DLLCHARACTERISTICS = 25; //leaving some enum space here for future additions const BYTE UE_SECTIONNAME = 40; const BYTE UE_SECTIONVIRTUALOFFSET = 41; @@ -112,7 +113,6 @@ const BYTE UE_SECTIONVIRTUALSIZE = 42; const BYTE UE_SECTIONRAWOFFSET = 43; const BYTE UE_SECTIONRAWSIZE = 44; const BYTE UE_SECTIONFLAGS = 45; -const BYTE UE_DLLCHARACTERISTICS = 46; const long UE_VANOTFOUND = -2; diff --git a/SDK/CPP/TitanEngine.hpp b/SDK/CPP/TitanEngine.hpp index 4e44730..8fecbcf 100644 --- a/SDK/CPP/TitanEngine.hpp +++ b/SDK/CPP/TitanEngine.hpp @@ -153,13 +153,13 @@ enum ePE32Data : DWORD UE_SUBSYSTEM = UE::UE_SUBSYSTEM, UE_CHARACTERISTICS = UE::UE_CHARACTERISTICS, UE_NUMBEROFRVAANDSIZES = UE::UE_NUMBEROFRVAANDSIZES, + UE_DLLCHARACTERISTICS = UE::UE_DLLCHARACTERISTICS, UE_SECTIONNAME = UE::UE_SECTIONNAME, UE_SECTIONVIRTUALOFFSET = UE::UE_SECTIONVIRTUALOFFSET, UE_SECTIONVIRTUALSIZE = UE::UE_SECTIONVIRTUALSIZE, UE_SECTIONRAWOFFSET = UE::UE_SECTIONRAWOFFSET, UE_SECTIONRAWSIZE = UE::UE_SECTIONRAWSIZE, - UE_SECTIONFLAGS = UE::UE_SECTIONFLAGS, - UE_DLLCHARACTERISTICS = UE::UE_DLLCHARACTERISTICS + UE_SECTIONFLAGS = UE::UE_SECTIONFLAGS }; const long UE_VANOTFOUND = UE::UE_VANOTFOUND; diff --git a/TitanEngine/stdafx.h b/TitanEngine/stdafx.h index 6e07c94..1292360 100644 --- a/TitanEngine/stdafx.h +++ b/TitanEngine/stdafx.h @@ -502,6 +502,7 @@ typedef struct HOOK_ENTRY #define UE_NUMBEROFRVAANDSIZES 22 #define UE_BASEOFCODE 23 #define UE_BASEOFDATA 24 +#define UE_DLLCHARACTERISTICS 25 //leaving some enum space here for future additions #define UE_SECTIONNAME 40 #define UE_SECTIONVIRTUALOFFSET 41 @@ -509,7 +510,6 @@ typedef struct HOOK_ENTRY #define UE_SECTIONRAWOFFSET 43 #define UE_SECTIONRAWSIZE 44 #define UE_SECTIONFLAGS 45 -#define UE_DLLCHARACTERISTICS 46 #define UE_CH_BREAKPOINT 1 #define UE_CH_SINGLESTEP 2