updatedialog.h

来自「teamviewer source code vc++」· C头文件 代码 · 共 29 行

H
29
字号
class vncAbout;

#if (!defined(_WINVNC_VNCUPDATE))
#define _WINVNC_VNCUPDATE

// The vncUpdate class itself
class vncUpdate
{
public:
	// Constructor/destructor
	vncUpdate();
	~vncUpdate();

	// Initialisation
	BOOL Init();

	// The dialog box window proc
	static BOOL CALLBACK DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);

	// General
	void Show(BOOL show);
	HWND m_hWnd;
	void CloseDialog();
	void SetText(LPCSTR text);
	// Implementation
	BOOL m_dlgvisible;
};

#endif // _WINVNC_VNCABOUT

⌨️ 快捷键说明

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