home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / SOFTWARE / LIBS / PMC101.ZIP / LIBSRC.ZIP / DRVFREE.C (.txt) < prev    next >
C/C++ Source or Header  |  1994-06-22  |  268b  |  18 lines

  1. #include "pmc.h"
  2.  
  3. long __pascal drivefree (int drive)
  4. {
  5.   REGSTRUCT rs;
  6.   int r;
  7.  
  8.   rs.w.FLAGS = rs.d.SSSP = 0;
  9.   rs.b.DL = drive;
  10.   rs.b.AH = 0x36;
  11.  
  12.   if ((r = xlt_simrmint (0x21, &rs, 0)) < 0)
  13.     return r;
  14.  
  15.   return rs.w.BX * rs.w.CX * rs.w.AX;
  16. }
  17.  
  18.