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

📄 rfid_int.h

📁 可捕捉到硬體的三軸的值
💻 H
字号:
#pragma once

#ifdef RFID_INT_EXPORTS
#define RFID_INT_API __declspec(dllexport)
#else
#define RFID_INT_API __declspec(dllimport)
#endif

class RFID_INT_API RFID_Int : public ChannelDialog  
{
public:
	RFID_Int();
	virtual ~RFID_Int();

	// set the channel for this dialog
	virtual	bool		GetChannelDialog(bool modeLess);
	//Initialization of the dialog
	virtual void		InitDialog();

	// Release this channel dialog
	virtual void		Release();
	//Refresh the dialog
	virtual void		Refresh();
	//Handles Win32 messages
	virtual BOOL		OnWndMessage(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
	//Handles WM_COMMAND messages
	virtual BOOL		OnCommandMessage(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify);
	// docking support
	// CreateDockedChannelDialog
	virtual bool		CreateDockedChannelDialog(HWND parentHwnd);
	// HideMainWindow
	virtual void		HideMainWindow(bool hide);
	// SetTabWindowSize
	virtual void		SetTabWindowSize(int X, int Y, int newWidth, int newHeight);
	// GetStandardDialogRect
	virtual RECT		GetStandardDialogRect();
	// Support cancel button (return true if a Cancel button is supported)
	virtual bool		GetIfSupportForCancel();
	// Handler for OK click
	virtual void		ClickedOk();
	// Handler for Cancel click
	virtual void		ClickedCancel();


protected:
	// our hwnd
	HWND				dialogHwnd_;

	RFID *	ourChannel_;
};

#define RFID_INTDLL_EXPORTS extern "C" { \
__declspec(dllexport) DllInterface * __cdecl InitDLL() \
{ \
	return new RFID_Int; \
} \
}

⌨️ 快捷键说明

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