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

📄 wzddata.h

📁 The programs and applications on this disk have been carefully tested, but are not guaranteed for
💻 H
字号:
#ifndef WZDDATA_H
#define WZDDATA_H

#include <afxmt.h>

class CWzdData : public CObject
{
public:
    DECLARE_SERIAL( CWzdData )

    CWzdData();

	BOOL GetData(int *pInt,float *pFloat,DWORD *pWord);
	BOOL SetData(int nInt,float fFloat,DWORD dwWord);

	// synchronization protection
	CMutex m_mutex;

	//result data
	int m_nInt;
	float m_fFloat;
	DWORD m_dwWord;

};
#endif

⌨️ 快捷键说明

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