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

📄 updatedialog.h

📁 teamviewer source code vc++
💻 H
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -