Skip to content

Commit

Permalink
lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Abc Dr committed Jan 8, 2024
1 parent 2d41207 commit 4aa286a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/angelscript/angelscriptlib.h
Expand Up @@ -300,7 +300,7 @@ typedef unsigned int asUINT;
// is likely to use MSVC6 to compile for 16bit systems anymore, so this should be ok.
typedef size_t asPWORD;
#else
typedef uintptr_t asPWORD;
typedef unsigned int asPWORD;
#endif
#ifdef __LP64__
typedef unsigned int asDWORD;
Expand All @@ -309,8 +309,8 @@ typedef long asINT64;
#else
typedef unsigned long asDWORD;
#if !defined(_MSC_VER) && (defined(__GNUC__) || defined(__MWERKS__) || defined(__SUNPRO_CC) || defined(__psp2__))
typedef uint64_t asQWORD;
typedef int64_t asINT64;
typedef unsigned long long asQWORD;
typedef long long asINT64;
#else
typedef unsigned __int64 asQWORD;
typedef __int64 asINT64;
Expand Down

0 comments on commit 4aa286a

Please sign in to comment.