home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sound Sensations!
/
sound_sensations.iso
/
miscprog
/
ad-prog
/
timeb.h
< prev
next >
Wrap
Text File
|
1988-08-29
|
425b
|
28 lines
/* timeb.h
Struct and function declarations for ftime().
Copyright (c) Borland International 1987,1988
All Rights Reserved.
*/
#if __STDC__
#define _Cdecl
#else
#define _Cdecl cdecl
#endif
#ifndef __TIMEB_DEFINED
#define __TIMEB_DEFINED
struct timeb {
long time;
short millitm;
short timezone;
short dstflag;
};
#endif
void _Cdecl ftime(struct timeb *);