Thread overview
_lseeki64
Dec 18, 2002
Henry Thomas
Dec 18, 2002
user
Dec 18, 2002
Daniel Fazekas
December 18, 2002
Is there any support for _lseeki64 in DMC. Is there a Windows DLL I can export from or is this a proprietary feature of VC?

-h


December 18, 2002
MSVCP**.DLL ??

Henry Thomas wrote:
> Is there any support for _lseeki64 in DMC. Is there a Windows DLL I can export
> from or is this a proprietary feature of VC?
> 
> -h
> 
> 

December 18, 2002
If it is a Win32 application, it might be more convenient to simply use the Win32 API file management functions, instead of those of the C run-time library.

SetFilePointer for example lets you specify two seperate 32-bit values to form a single signed 64-bit value to cover big distances.

http://msdn.microsoft.com/library/en-us/fileio/base/setfilepointer.asp

You'll have to use CreateFile instead of fopen etc. too.

--
Daniel