freetype-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [ft-devel] LLP64 model outside Win64


From: Werner LEMBERG
Subject: Re: [ft-devel] LLP64 model outside Win64
Date: Fri, 09 Feb 2018 16:32:58 +0100 (CET)

>> -#ifdef _WIN64
>> -  /* only 64bit Windows uses the LLP64 data model, i.e., */
>> -  /* 32bit integers, 64bit pointers                      */
>> -#define FT_UINT_TO_POINTER( x ) (void*)(unsigned __int64)(x)
>> -#else
>> -#define FT_UINT_TO_POINTER( x ) (void*)(unsigned long)(x)
>> -#endif
>> +#define FT_UINT_TO_POINTER( x ) (void*)(uintptr_t)(x)
> 
> Strangely, uintptr_t never came up in
> https://savannah.nongnu.org/bugs/index.php?50560
> It is C99 though.

Exactly.  Thus we cannot use it (at least not unconditionally).  I
don't mind if the LLP64 data model gets untied from Windows, but it
should be a portable solution that works with pre-C99 compilers also.


    Werner



reply via email to

[Prev in Thread] Current Thread [Next in Thread]