⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timeb.h

📁 在纯DOS下运行的TurboC3_ucos2_ucgui bug改进版本
💻 H
字号:
/*  timeb.h

    Struct and function declarations for ftime().

    Copyright (c) 1987, 1991 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 ftime(struct timeb *);
#ifdef __cplusplus
}
#endif

#endif  /* __TIMEB_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -