fix brackets with #defines

This commit is contained in:
deepzero 2014-01-15 22:32:16 +01:00 committed by cypherpunk
parent 592ef9cec7
commit 595146f31f
1 changed files with 9 additions and 9 deletions

View File

@ -26,16 +26,16 @@
#define STATUS_SUCCESS ((NTSTATUS)0x00000000L) // ntsubauth #define STATUS_SUCCESS ((NTSTATUS)0x00000000L) // ntsubauth
// Engine.Internal: // Engine.Internal:
#define TITANENGINE_PAGESIZE 0x1000 #define TITANENGINE_PAGESIZE (0x1000)
#define MAX_IMPORT_ALLOC 256 * 256 #define MAX_IMPORT_ALLOC (256 * 256)
#define MAX_RELOC_ALLOC 1024 * 1024 #define MAX_RELOC_ALLOC (1024 * 1024)
#define UE_MAX_RESERVED_MEMORY_LEFT 32 #define UE_MAX_RESERVED_MEMORY_LEFT (32)
#define MAXIMUM_SECTION_NUMBER 32 #define MAXIMUM_SECTION_NUMBER (32)
#define MAX_DECODE_INSTRUCTIONS 32 #define MAX_DECODE_INSTRUCTIONS (32)
#define MAX_INSTRUCTIONS (1000) #define MAX_INSTRUCTIONS (1000)
#define MAXIMUM_BREAKPOINTS 1000 #define MAXIMUM_BREAKPOINTS (1000)
#define MAXIMUM_INSTRUCTION_SIZE 40 #define MAXIMUM_INSTRUCTION_SIZE (40)
#define MAX_RET_SEARCH_INSTRUCTIONS 100 #define MAX_RET_SEARCH_INSTRUCTIONS (100)
#define UE_OPTION_IMPORTER_REALIGN_LOCAL_APIADDRESS 0 #define UE_OPTION_IMPORTER_REALIGN_LOCAL_APIADDRESS 0
#define UE_OPTION_IMPORTER_REALIGN_APIADDRESS 1 #define UE_OPTION_IMPORTER_REALIGN_APIADDRESS 1