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

📄 prtime.h

📁 MiniWinOuterSM MiniWinOuterSM
💻 H
字号:
/*
	PrTime.h
	Copyright (C) 2004-2005 CLife. All rights reserved.
*/
#ifndef _PrTIME_H_
#define _PrTIME_H_

#include "PrTypes.h"

PR_BEGIN_EXTERN_C

typedef struct PrTimeVal
{
	UINT32 tv_sec;
	UINT32 tv_usec;
} PRTimeVal;

typedef struct PrTimeSpec
{
	UINT32 tv_sec;
	UINT32 tv_nsec;
} PRTimeSpec;

PRStatus PrTimeInit(void);
PRStatus PrTimeTerm(void);
UINT32 PrTimeGetTicks(void);
PRTime PrTimeGetNow(PRTimeVal *time);
UINT32 PrTimeGetTicksPerSecond(void);

PR_END_EXTERN_C

#endif	/* _PrTIME_H_ */

⌨️ 快捷键说明

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