server.h

来自「一个实时音频或视频通讯程序」· C头文件 代码 · 共 32 行

H
32
字号

#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 + =
减小字号Ctrl + -
显示快捷键?