From e80e2db7df192392ebbd8e80e2b609eea4df61c0 Mon Sep 17 00:00:00 2001 From: deepzero Date: Wed, 15 Jan 2014 22:32:16 +0100 Subject: [PATCH] fix brackets with #defines --- TitanEngine/stdafx.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/TitanEngine/stdafx.h b/TitanEngine/stdafx.h index f50c889..c97c25a 100644 --- a/TitanEngine/stdafx.h +++ b/TitanEngine/stdafx.h @@ -26,16 +26,16 @@ #define STATUS_SUCCESS ((NTSTATUS)0x00000000L) // ntsubauth // Engine.Internal: -#define TITANENGINE_PAGESIZE 0x1000 -#define MAX_IMPORT_ALLOC 256 * 256 -#define MAX_RELOC_ALLOC 1024 * 1024 -#define UE_MAX_RESERVED_MEMORY_LEFT 32 -#define MAXIMUM_SECTION_NUMBER 32 -#define MAX_DECODE_INSTRUCTIONS 32 +#define TITANENGINE_PAGESIZE (0x1000) +#define MAX_IMPORT_ALLOC (256 * 256) +#define MAX_RELOC_ALLOC (1024 * 1024) +#define UE_MAX_RESERVED_MEMORY_LEFT (32) +#define MAXIMUM_SECTION_NUMBER (32) +#define MAX_DECODE_INSTRUCTIONS (32) #define MAX_INSTRUCTIONS (1000) -#define MAXIMUM_BREAKPOINTS 1000 -#define MAXIMUM_INSTRUCTION_SIZE 40 -#define MAX_RET_SEARCH_INSTRUCTIONS 100 +#define MAXIMUM_BREAKPOINTS (1000) +#define MAXIMUM_INSTRUCTION_SIZE (40) +#define MAX_RET_SEARCH_INSTRUCTIONS (100) #define UE_OPTION_IMPORTER_REALIGN_LOCAL_APIADDRESS 0 #define UE_OPTION_IMPORTER_REALIGN_APIADDRESS 1