← Back to team overview

coapp-developers team mailing list archive

Re: Engine APIs required by Bootstrap

 

On 9/1/2010 11:34 AM, Olaf van der Spek wrote:
> On Wed, Sep 1, 2010 at 6:29 PM, Garrett Serack <garretts@xxxxxxxxxxxxx> wrote:
>> Well, Windows APIs use LONG which is a typedef to long .. (clever, eh?)
>> The CRT uses long for things like fseek.
>> off_t is another typedef to long
>> I suppose I should have said long instead of __int64 -- but I have a soft
>> spot for being precise--in spite of the plethora of aliases to long.
> 
> You mean long long? Long doesn't cut it.

No... what he describes is LONG.  But most win32 API's have two DWORD args,
the extended value would be the signed quadword you are thinking of.

_fseeki64/_lseeki64/_ftelli64 etc are __int64, which is the same as long long
in recent compilers.



References