readded UE_VANOTFOUND

used e.g. in TitanScript as return type from TE
This commit is contained in:
cypherpunk 2013-12-09 12:03:06 +01:00
parent d585941ba9
commit d2da5448a6
2 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,8 @@
#define UE_SECTIONRAWSIZE 27 #define UE_SECTIONRAWSIZE 27
#define UE_SECTIONFLAGS 28 #define UE_SECTIONFLAGS 28
#define UE_VANOTFOUND = -2;
#define UE_CH_BREAKPOINT 1 #define UE_CH_BREAKPOINT 1
#define UE_CH_SINGLESTEP 2 #define UE_CH_SINGLESTEP 2
#define UE_CH_ACCESSVIOLATION 3 #define UE_CH_ACCESSVIOLATION 3

View File

@ -94,6 +94,8 @@ const BYTE UE_SECTIONRAWOFFSET = 26;
const BYTE UE_SECTIONRAWSIZE = 27; const BYTE UE_SECTIONRAWSIZE = 27;
const BYTE UE_SECTIONFLAGS = 28; const BYTE UE_SECTIONFLAGS = 28;
const long UE_VANOTFOUND = -2;
const BYTE UE_CH_BREAKPOINT = 1; const BYTE UE_CH_BREAKPOINT = 1;
const BYTE UE_CH_SINGLESTEP = 2; const BYTE UE_CH_SINGLESTEP = 2;
const BYTE UE_CH_ACCESSVIOLATION = 3; const BYTE UE_CH_ACCESSVIOLATION = 3;