timeb.h
来自「ucos 开发工具 Borland c3.1版」· C头文件 代码 · 共 36 行
H
36 行
/* timeb.h
Struct and function declarations for ftime().
Copyright (c) 1987, 1992 by Borland International
All Rights Reserved.
*/
#if !defined(__TIMEB_H)
#define __TIMEB_H
#if !defined(___DEFS_H)
#include <_defs.h>
#endif
struct timeb {
long time;
short millitm;
#if defined(_RTLDLL)
short _timezone;
#else
short timezone;
#endif
short dstflag;
};
#ifdef __cplusplus
extern "C" {
#endif
void _Cdecl _FARFUNC ftime(struct timeb _FAR *);
#ifdef __cplusplus
}
#endif
#endif /* __TIMEB_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?