home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Virtual Reality Madness
/
VRMAD96_ONE.ISO
/
virtek
/
libex
/
libex113.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-24
|
336b
|
12 lines
// Example: 113 from Library Reference
#include "..\3D-Ware\dddware.h"
#include <stdio.h>
long size;
short main(void)
{
// Request file size.
size = dddRealGetFileSize("\\virtek\\dos\\3d-ware\\dddware.lib");
printf("The size in bytes of dddware.lib is %ld bytes",size);
return 0; // Bye.
}