|
|
1.1 root 1: /***
2: *sys\timeb.h - definition/declarations for ftime()
3: *
4: * Copyright (c) 1985-1990, Microsoft Corporation. All rights reserved.
5: *
6: *Purpose:
7: * This file define the ftime() function and the types it uses.
8: * [System V]
9: *
10: *******************************************************************************/
11:
12:
13: #ifndef _TIME_T_DEFINED
14: typedef long time_t;
15: #define _TIME_T_DEFINED
16: #endif
17:
18: /* structure returned by ftime system call */
19:
20: #ifndef _TIMEB_DEFINED
21: struct timeb {
22: time_t time;
23: unsigned short millitm;
24: short timezone;
25: short dstflag;
26: };
27: #define _TIMEB_DEFINED
28: #endif
29:
30:
31: /* function prototypes */
32:
33: void _cdecl ftime(struct timeb *);
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.