wait.h

来自「WinCE试验_电机控制实验MotorCtrl」· C头文件 代码 · 共 27 行

H
27
字号
// Wait.h: interface for the CWait class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_WAIT_H__7EA8920E_51CF_45DC_8637_3E31AF42BDFC__INCLUDED_)
#define AFX_WAIT_H__7EA8920E_51CF_45DC_8637_3E31AF42BDFC__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CWait  
{
public:
	CWait();
	virtual ~CWait();

	void usWait(unsigned usVal);
	void msWait(unsigned msVal);
	void sWait(unsigned msVal);

	PVOID VirtualAllocCopy(unsigned size,char *str,PVOID pVirtualAddress);
	PVOID VirtualAllocCopyPhysical(unsigned size, char *str, PVOID pPhysicalAddress);
};

#endif // !defined(AFX_WAIT_H__7EA8920E_51CF_45DC_8637_3E31AF42BDFC__INCLUDED_)

⌨️ 快捷键说明

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