Skip to content

Commit

Permalink
Fix KINC_64
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Feb 23, 2025
1 parent 1150611 commit 0c75b1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/kinc/global.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,17 @@
#define KINC_FUNC
#endif

#if defined(__LP64__) || defined(_LP64) || defined(_WIN64)
#define KINC_64
#endif

#ifdef __cplusplus

namespace Kore {
typedef unsigned char u8; // 1 Byte
typedef unsigned short u16; // 2 Byte
typedef unsigned int u32; // 4 Byte

#if defined(__LP64__) || defined(_LP64) || defined(_WIN64)
#define KINC_64
#endif

#ifdef KINC_WINDOWS
typedef unsigned __int64 u64; // 8 Byte
#else
Expand Down

0 comments on commit 0c75b1b

Please sign in to comment.