📄 os.cpp
字号:
#include "stdafx.h"#include "os.h"#include <unistd.h>//#include <sys/time.h>unsigned long startTime;bool startTimed = false;// Get a time measure msec. unsigned long GetTimeMsec() { /* timeval t = getTime(); return t.tv_sec * 1000 + t.tv_usec / 1000; */ return 100;}// Get time in seconds (using hi res timer)float GetTimeSec() { return 0.1;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -