📄 time.h
字号:
//// (c) Yuriy Gorvitovskiy// for Openh323, www.Openh323.org//// Windows CE Port//// Definitions/declarations for time routines //// [Microsoft]// [ANSI/System V]// [Public]// #ifndef _TIME_H#define _TIME_H#define _INC_TIME // for wce.h#include <windows.h>#include <time.h>#include <stdlib.h>#ifndef _TM_DEFINED#define _TM_DEFINEDstruct tm { int tm_sec; /* seconds after the minute - [0,59] */ int tm_min; /* minutes after the hour - [0,59] */ int tm_hour; /* hours since midnight - [0,23] */ int tm_mday; /* day of the month - [1,31] */ int tm_mon; /* months since January - [0,11] */ int tm_year; /* years since 1900 */ int tm_wday; /* days since Sunday - [0,6] */ int tm_yday; /* days since January 1 - [0,365] */ int tm_isdst; /* daylight savings time flag */ };#endif // _TM_DEFINED#ifdef __cplusplusextern "C" {#endif#ifndef _CLOCK_T_DEFINEDtypedef long clock_t;#define _CLOCK_T_DEFINED#endif/* Clock ticks macro - ANSI version */#define CLOCKS_PER_SEC 1000/* Function prototypes */clock_t clock(void);struct tm * gmtime(const time_t* t);struct tm * localtime(const time_t* t);time_t mktime(struct tm* t);time_t time(time_t* t);time_t FileTimeToTime(const FILETIME& FileTime);time_t SystemTimeToTime(const LPSYSTEMTIME pSystemTime);#ifdef __cplusplus}#endif#endif /* _INC_TIME */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -