This commit is contained in:
Viktor Szakats 2017-03-30 12:22:25 +00:00
parent dce241c107
commit 7bbd665b34

View File

@ -466,10 +466,12 @@
static_cast<type>(static_cast<const void*>(value)) static_cast<type>(static_cast<const void*>(value))
#else #else
# define png_voidcast(type, value) (value) # define png_voidcast(type, value) (value)
# if defined( _WIN64 ) && ! defined( __GNUC__ ) # ifdef _WIN64
typedef unsigned __int64 png_ptruint; # ifdef __GNUC__
# elif defined( _WIN64 ) typedef unsigned long long png_ptruint;
typedef unsigned long long png_ptruint; # else
typedef unsigned __int64 png_ptruint;
# endif
# else # else
typedef unsigned long png_ptruint; typedef unsigned long png_ptruint;
# endif # endif