home *** CD-ROM | disk | FTP | other *** search
- #include <dos.h>
-
- void getdfree( unsigned char drive, struct dfree *dtable)
- {
- union REGS regs;
- regs.h.ah = 0x36;
- regs.h.dl = drive;
- intdos( ®s, ®s);
- dtable -> df_sclus = regs.x.ax;
- dtable -> df_avail = regs.x.bx;
- dtable -> df_bsec = regs.x.cx;
- dtable -> df_total = regs.x.dx;
-
- }
-