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

📄 mouseproc.h

📁 Mouse Event API Programing
💻 H
字号:
#ifndef _MOUSEPROC_H_
#define _MOUSEPROC_H_

#ifdef APPFRAMEWORK_DLL_EXPORTS
#define APPFRAMEWORK_DLL __declspec(dllexport)
#else
#define APPFRAMEWORK_DLL __declspec(dllimport)
#endif

#include <windows.h>

class APPFRAMEWORK_DLL CMouseProc
{
protected:
	POINT m_nPos;
	BOOL m_bState;

public:
	CMouseProc();
	virtual ~CMouseProc();

	virtual HRESULT MouseProc(HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam);

};

#endif

⌨️ 快捷键说明

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