myapp.h
来自「Mouse Event API Programing」· C头文件 代码 · 共 27 行
H
27 行
#ifndef _MYAPP_H_
#define _MYAPP_H_
#include "AppFramework.h"
#pragma comment(lib, "AppFramework_dll.lib")
class CMyApp
: public CAppFramework
{
private:
LPSTR m_pStr1;
LPSTR m_pStr2;
LPSTR m_pStr3;
LPSTR m_pStr4;
public:
CMyApp();
virtual ~CMyApp();
public:
// MSG Proc
virtual LRESULT MSGProc(HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam);
virtual HRESULT MouseProc(HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?