home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Madness / VRMAD96_ONE.ISO / virtek / libex / libex113.c < prev    next >
C/C++ Source or Header  |  1995-08-24  |  336b  |  12 lines

  1.             // Example: 113 from Library Reference
  2. #include "..\3D-Ware\dddware.h"
  3. #include  <stdio.h>
  4. long    size;
  5. short  main(void)
  6. {
  7.             // Request file size.
  8.   size = dddRealGetFileSize("\\virtek\\dos\\3d-ware\\dddware.lib");
  9.   printf("The size in bytes of dddware.lib is %ld bytes",size);
  10.   return 0; // Bye.
  11. }
  12.