From: Charles Sandmann Newsgroups: comp.os.msdos.djgpp Subject: Re: Raw disk access Date: Tue, 12 Nov 2002 23:56:42 CST Organization: Rice University, Houston TX Lines: 15 Message-ID: <3dd1e99a.sandmann@clio.rice.edu> References: NNTP-Posting-Host: clio.rice.edu X-Trace: joe.rice.edu 1037167334 21895 128.42.105.3 (13 Nov 2002 06:02:14 GMT) X-Complaints-To: abuse AT rice DOT edu NNTP-Posting-Date: 13 Nov 2002 06:02:14 GMT X-NewsEditor: ED-1.5.9 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com > I need to write a NTFS partition browser, that will work from the pure DOS, > and I want to use DJGPP for that task. http://www.wininternals.com/products/repairandrecovery/ntfsdospro.asp If you go to the demo downloads, you get the browser portion for free. Not to discourage you from writing your own, but sometimes free and existing is easier :-) > Is it okay to use _bios_disk function for reading? Does it support reading > sectors beyound 1024 cylinder at least on modern BIOSes? _bios_disk is limited to 1024 cylinders, using the old BIOS calls. You will need to use dpmi_int to call new BIOS calls directly.