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

📄 stopwatch.h

📁 This is a little console mode utility program which is able to (de-)compress single files with a s
💻 H
字号:
/*****************************************************************************

  StopWatch
  ---------

  Revisions: 001

  Interface, based on the GetTickCount API, to log time elapses.

  by yoda

  WWW:      y0da.cjb.net
  E-mail:   LordPE@gmx.net

  You are allowed to use this class in your own projects if you keep this
  trademark.

*****************************************************************************/

#pragma once

#include <windows.h>

//
// CStopWatch class
//
class CStopWatch
{
public:
	CStopWatch(void);
	~CStopWatch(void);

	void    Start();
	void    Stop();

	DWORD   GetMSeconds();
	DWORD   GetSeconds();
	DWORD   GetMinutes();

	DWORD   GetTimeMSeconds();
	DWORD   GetTimeSeconds();
	DWORD   GetTimeMinutes();

private:
	DWORD   dwStartTime, dwEndTime;
};

⌨️ 快捷键说明

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