home *** CD-ROM | disk | FTP | other *** search
- /*Program 5_11 - Get disk and memory information
- by Stephen R. Davis, 1987
-
- Get the current disk and memory information and display in
- a comfortable format
- */
-
- #include <stdio.h>
- #include <dos.h>
- #include <alloc.h>
-
- #define membios 0x12
-
- /*allocate some local structures*/
-
- struct dfree dfres; /*for the getdfree() call*/
- union REGS regs; /*for the int86() call*/
-
- /*Main - perform the necessary system calls and format the
- results for output*/
- int main ()
- {
- long totdisk, availdisk, totmem, availmem;
- unsigned currseg;
- double percentdisk, percentmem;
-
- /*first accumulate the information*/
- getdfree (0, &dfres); /*uses system call 0x36*/
- availdisk = (long)dfres.df_avail * (long)dfres.df_sclus *
- (long)dfres.df_bsec;
- totdisk = (long)dfres.df_total * (long)dfres.df_sclus *
- (long)dfres.df_bsec;
- percentdisk = ((double)availdisk / (double)totdisk) * (double)100.;
-
- int86 (membios, ®s, ®s); /*use BIOS call 0x12*/
- totmem = (long)regs.x.ax * (long)1024;
- availmem = (long)farcoreleft ();
- percentmem = ((double)availmem / (double)totmem) * (double)100.;
-
- currseg = FP_SEG ((int (far *)())main);
-
- /*now print these values out in a reasonable form*/
- printf ("Display available disk and memory\n"
- "\n"
- "Disk:\n"
- " %9ld bytes available (%6ldk)\n"
- " %9ld bytes total (%6ldk)\n"
- " (%2.0f%% free)\n"
- "\n"
- "Memory:\n"
- " %7ld bytes available (%4ldk)\n"
- " %7ld bytes total (%4ldk)\n"
- " (%2.0f%% free)\n"
- "\n"
- "Current segment is %X\n",
- availdisk, availdisk / (long)1024,
- totdisk, totdisk / (long)1024,
- percentdisk,
- availmem, availmem / (long)1024,
- totmem, totmem / (long)1024,
- percentmem,
- currseg);
- }