|
|
1.1 root 1: /***
2: *sys\timeb.h - definition/declarations for ftime()
3: *
4: * Copyright (c) 1985-1987, 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 NO_EXT_KEYS /* extensions enabled */
14: #define CDECL cdecl
15: #else /* extensions not enabled */
16: #define CDECL
17: #endif /* NO_EXT_KEYS */
18:
19:
20: #ifndef _TIME_T_DEFINED
21: typedef long time_t;
22: #define _TIME_T_DEFINED
23: #endif
24:
25: /* structure returned by ftime system call */
26:
27: #ifndef _TIMEB_DEFINED
28: struct timeb {
29: time_t time;
30: unsigned short millitm;
31: short timezone;
32: short dstflag;
33: };
34: #define _TIMEB_DEFINED
35: #endif
36:
37:
38: /* function prototypes */
39:
40: void CDECL ftime(struct timeb *);
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.