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

📄 server.h

📁 一个实时音频或视频通讯程序
💻 H
字号:

#ifndef _SERVER_H_
#define _SERVER_H_
#include "TrayNotify.h"	// Added by ClassView
#define SERVER_MUTEX "NETTALK_SERVER_1000"
#define WM_TRAYNOTIFY WM_USER+10

class CAboutDlg:public CDialogX
{
public:
	virtual  ~CAboutDlg();
	CAboutDlg();

protected:
	virtual LRESULT WndProc(UINT uMsg,WPARAM wParam,LPARAM lParam);
};
class CMainWnd:public CDialogX
{
public:
	virtual  ~CMainWnd();
	CMainWnd();
protected:
	virtual BOOL OnInitDialog();
	CTrayNotify m_tn;
	virtual void OnTrayNotify(WPARAM wParam,LPARAM lParam);
	virtual void OnClose();
	virtual BOOL OnCommand( WPARAM wParam, LPARAM lParam );
	virtual LRESULT WndProc(UINT uMsg,WPARAM wParam,LPARAM lParam);
};


#endif

⌨️ 快捷键说明

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