📄 get_time.win32.c
字号:
#include <sys/time.h>#include "pbc_utils.h"typedef struct _FILETIME { unsigned long dwLowDateTime; unsigned long dwHighDateTime;} FILETIME;void __stdcall GetSystemTimeAsFileTime(FILETIME*);int __cdecl gettimeofday(struct timeval* p, void* tz /* IGNORED */){ union { long long ns100; /*time since 1 Jan 1601 in 100ns units */ FILETIME ft; } _now; UNUSED_VAR(tz); GetSystemTimeAsFileTime( &(_now.ft) ); p->tv_usec=(long)((_now.ns100 / 10LL) % 1000000LL ); p->tv_sec= (long)((_now.ns100-(116444736000000000LL))/10000000LL); return 0; //assume success?}double get_time(void){ static struct timeval last_tv, tv; static int first = 1; static double res = 0; if (first) { gettimeofday(&last_tv, NULL); first = 0; return 0; } else { gettimeofday(&tv, NULL); res += tv.tv_sec - last_tv.tv_sec; res += (tv.tv_usec - last_tv.tv_usec) / 1000000.0; last_tv = tv; return res; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -