OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
chatty.h
1// chatty.h : main header file for the CHATTY application
2//
3
4#if !defined(AFX_CHATTY_H__D2C88C24_CA2E_4ED3_B08E_BF48F6C0A36B__INCLUDED_)
5#define AFX_CHATTY_H__D2C88C24_CA2E_4ED3_B08E_BF48F6C0A36B__INCLUDED_
6
7#if _MSC_VER > 1000
8#pragma once
9#endif // _MSC_VER > 1000
10
11#ifndef __AFXWIN_H__
12 #error include 'stdafx.h' before including this file for PCH
13#endif
14
15#include "resource.h" // main symbols
16
18// CChattyApp:
19// See chatty.cpp for the implementation of this class
20//
21
22class CChattyApp : public CWinApp
23{
24public:
25 CChattyApp();
26
27 CHAT m_chat;
28 bool m_connected;
29
30// Overrides
31 // ClassWizard generated virtual function overrides
32 //{{AFX_VIRTUAL(CChattyApp)
33 public:
34 virtual BOOL InitInstance();
35 virtual int ExitInstance();
36 //}}AFX_VIRTUAL
37
38// Implementation
39 //{{AFX_MSG(CChattyApp)
40 afx_msg void OnAppAbout();
41 afx_msg void OnFileConnect();
42 afx_msg void OnFileDisconnect();
43 afx_msg void OnFileListchannels();
44 afx_msg void OnFileSendraw();
45 afx_msg void OnFileGetuserinfo();
46 afx_msg void OnFileSilence();
47 afx_msg void OnFileUnsilence();
48 //}}AFX_MSG
49 DECLARE_MESSAGE_MAP()
50};
51
52extern CChattyApp theApp;
53
55
56//{{AFX_INSERT_LOCATION}}
57// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
58
59#endif // !defined(AFX_CHATTY_H__D2C88C24_CA2E_4ED3_B08E_BF48F6C0A36B__INCLUDED_)
Definition chatty.h:23