Re: 64 bit integers (accessing files > 4Gb)
- Posted by CChris <christian.cuvier at agriculture.gouv.fr> Jan 31, 2007
- 517 views
Chris Bensler wrote: > > How do I access file data > 4Gb? > > The Windows API has SetFilePointerEx() but it requires large integers. > Is it possible to deal with large ints in Eu using atoms? > > Chris Bensler > ~ The difference between ordinary and extraordinary is that little extra ~ > <a href="http://empire.iwireweb.com">http://empire.iwireweb.com</a> - Empire > for Euphoria I replied too fast: Since C pushes args right to left, the high dword of the large integer should be in the third argument, and the low dword in the second argument. CChris