File tree Expand file tree Collapse file tree 2 files changed +0
-29
lines changed Expand file tree Collapse file tree 2 files changed +0
-29
lines changed Original file line number Diff line number Diff line change 1212#ifndef __ICEPREPROCESSOR_H__
1313#define __ICEPREPROCESSOR_H__
1414
15- /*
16- // Check platform
17- #if defined(_WIN32) || defined(WIN32)
18- #pragma message("Compiling on Windows...")
19- #define PLATFORM_WINDOWS
20- #else
21- #pragma message("Compiling on unknown platform...")
22- #endif
23-
24- // Check compiler
25- #if defined(_MSC_VER)
26- #pragma message("Compiling with VC++...")
27- #define COMPILER_VISUAL_CPP
28- #else
29- #pragma message("Compiling with unknown compiler...")
30- #endif
31- */
32-
3315// Check compiler options
3416#ifdef COMPILER_VISUAL_CPP
3517#if defined(_CHAR_UNSIGNED )
Original file line number Diff line number Diff line change @@ -45,13 +45,8 @@ typedef signed short sword; //!< sizeof(sword) must be 2
4545typedef unsigned short uword; // !< sizeof(uword) must be 2
4646typedef signed int sdword; // !< sizeof(sdword) must be 4
4747typedef unsigned int udword; // !< sizeof(udword) must be 4
48- #if defined (_MSC_VER)
49- typedef signed __int64 sqword; // !< sizeof(sqword) must be 8
50- typedef unsigned __int64 uqword; // !< sizeof(uqword) must be 8
51- #else
5248typedef int64_t sqword; // !< sizeof(sqword) must be 8
5349typedef uint64_t uqword; // !< sizeof(uqword) must be 8
54- #endif
5550typedef float float32; // !< sizeof(float32) must be 4
5651typedef double float64; // !< sizeof(float64) must be 4
5752
@@ -76,12 +71,6 @@ typedef udword RTYPE; //!< Relationship-type (!) between owners and references
7671#define INVALID_KID 0xffff // !< Invalid Kernel ID
7772#define INVALID_NUMBER 0xDEADBEEF // !< Standard junk value
7873
79- // Define BOOL if needed
80- #if defined (_MSC_VER)
81- #ifndef BOOL
82- typedef int BOOL; // !< Another boolean type.
83- #endif
84- #endif
8574// ! Union of a float and a sdword
8675typedef union
8776{
You can’t perform that action at this time.
0 commit comments