mirror of https://github.com/x64dbg/TitanEngine
fixed UE_DLLCHARACTERISTICS
This commit is contained in:
parent
bdaae76d9d
commit
895f80996b
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue