Displaying 7 results from an estimated 7 matches for "ftelli64".
Did you mean:
ftell64
2013 May 04
5
Bug fix and compatibility patches for 1.3.0pre4
...er_write_zeroes to the external declarations in bitwriter.c.
- The Ogg patch replaces the check for FLAC_API_SUPPORTS_OGG_FLAC in
stream_decoder.c with FLAC__HAS_OGG to fix compilation with Ogg support.
The _lseeki64 patch probably is a little more controversial. The problem
is that fseeki64 and ftelli64 are not available in Windows XP - at least
not without installing extra MSVC runtime libraries. I changed compat.h
and replaced them with calls to _lseeki64, which was available at least
back to Windows 98 and thus doesn't impose such compatibility issues.
However, the patch only represents...
2013 May 05
4
Bug fix and compatibility patches for 1.3.0pre4
On 5/5/2013 09:03, Timothy B. Terriberry wrote:
> Robert Kausch wrote:
>> The _lseeki64 patch probably is a little more controversial. The problem
>> is that fseeki64 and ftelli64 are not available in Windows XP - at least
>> not without installing extra MSVC runtime libraries. I changed compat.h
>> and replaced them with calls to _lseeki64, which was available at least
>> back to Windows 98 and thus doesn't impose such compatibility issues.
>
>...
2013 May 05
0
Bug fix and compatibility patches for 1.3.0pre4
Robert Kausch wrote:
> The _lseeki64 patch probably is a little more controversial. The problem
> is that fseeki64 and ftelli64 are not available in Windows XP - at least
> not without installing extra MSVC runtime libraries. I changed compat.h
> and replaced them with calls to _lseeki64, which was available at least
> back to Windows 98 and thus doesn't impose such compatibility issues.
_lseeki64 operates on...
2013 May 06
2
flac-dev Digest, Vol 102, Issue 7
...eeki64 sounds reasonable, so
> I think I'll try that.
>
> I noticed another problem with _lseeki64 though. It returns the new file
> pointer position on success instead of 0, so the macro will have to take
> that into account.
>
>> That source also includes an fseeki64()/ftelli64(), but they are not
>> defined in stdio.h. I wonder if just declaring it yourself is good
>> enough?
>>
> Those functions are not exported by XPs msvcrt.dll, so declaring them
> won't help.
>
>
>
> ---------- Forwarded message ----------
> From: Robert Kau...
2013 May 07
0
flac-dev Digest, Vol 102, Issue 7
...reasonable, so I think I'll try that.
>
> I noticed another problem with _lseeki64 though. It returns the
> new file pointer position on success instead of 0, so the macro
> will have to take that into account.
>
> That source also includes an fseeki64()/ftelli64(), but they
> are not
> defined in stdio.h. I wonder if just declaring it yourself is good
> enough?
>
> Those functions are not exported by XPs msvcrt.dll, so declaring
> them won't help.
>
>
>
> ---------- Forwarded message ---...
2013 May 25
0
Bug fix and compatibility patches for 1.3.0pre4
...ternal declarations in bitwriter.c.
> - The Ogg patch replaces the check for FLAC_API_SUPPORTS_OGG_FLAC in
> stream_decoder.c with FLAC__HAS_OGG to fix compilation with Ogg support.
>
> The _lseeki64 patch probably is a little more controversial. The problem
> is that fseeki64 and ftelli64 are not available in Windows XP - at least
> not without installing extra MSVC runtime libraries. I changed compat.h
> and replaced them with calls to _lseeki64, which was available at least
> back to Windows 98 and thus doesn't impose such compatibility issues.
> However, the p...
2013 May 25
4
Bug fix and compatibility patches for 1.3.0pre4
...ns in bitwriter.c.
>> - The Ogg patch replaces the check for FLAC_API_SUPPORTS_OGG_FLAC in
>> stream_decoder.c with FLAC__HAS_OGG to fix compilation with Ogg support.
>>
>> The _lseeki64 patch probably is a little more controversial. The problem
>> is that fseeki64 and ftelli64 are not available in Windows XP - at least
>> not without installing extra MSVC runtime libraries. I changed compat.h
>> and replaced them with calls to _lseeki64, which was available at least
>> back to Windows 98 and thus doesn't impose such compatibility issues.
>> Ho...