Re: Directory info?
- Posted by DerekParnell (admin) Sep 21, 2008
- 1047 views
ne1uno said...
GetDiskFreeSpace has a problem with disks bigger than 2gig,
That problem only occurs on ancient Windows systems (Win 95/98/ME) which are also unlikely to have large drives.
ne1uno said...
aFreeBytesAvailableToCaller = allocate(4) aTotalNumberOfBytes = allocate(4) aTotalNumberOfFreeBytes = allocate(4)
Should be
aFreeBytesAvailableToCaller = allocate(8) aTotalNumberOfBytes = allocate(8) aTotalNumberOfFreeBytes = allocate(8)