Skip to content

Commit a472cb2

Browse files
committed
remove unneded stuff
1 parent a83f1e7 commit a472cb2

File tree

2 files changed

+0
-29
lines changed

2 files changed

+0
-29
lines changed

Externals/OPCODE/OPC_Preprocessor.h

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,6 @@
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)

Externals/OPCODE/OPC_Types.h

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,8 @@ typedef signed short sword; //!< sizeof(sword) must be 2
4545
typedef unsigned short uword; //!< sizeof(uword) must be 2
4646
typedef signed int sdword; //!< sizeof(sdword) must be 4
4747
typedef 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
5248
typedef int64_t sqword; //!< sizeof(sqword) must be 8
5349
typedef uint64_t uqword; //!< sizeof(uqword) must be 8
54-
#endif
5550
typedef float float32; //!< sizeof(float32) must be 4
5651
typedef 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
8675
typedef union
8776
{

0 commit comments

Comments
 (0)