#if !defined(AFX_CHATCLIENTDLG_H__7DFB6A29_8715_11D6_8F32_00E04CE76240__INCLUDED_)
#define AFX_CHATCLIENTDLG_H__7DFB6A29_8715_11D6_8F32_00E04CE76240__INCLUDED_#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000/////////////////////////////////////////////////////////////////////////////
// CChatClientDlg dialog#define BUFFER_SIZE 200 //缓冲区大小
struct SENDDATA
{
char casschar;
char ipcomm[15];
};
class CChatSocket;
class CChatClientDlg : public CDialog
{
// Construction
public:
CChatClientDlg(CWnd* pParent = NULL); // standard constructor
CString bufferto;//存放要发送数据
SENDDATA senddata  ;  ///////////   <------------问题在此处__________________________________________
SENDDATA senddata  ; 这个类在 此处实例化时候 有这样问题
       此行被修改时,安ALT + F7 编译时 有这样的提示:
Cannot compile the file 'd\d\s\ChatClientDlg.h';no compile tool is associated with the file extension.而按build键和 运行 键 都可以通过.请问以上抱错是怎么形成的;有什么危害;如何解决? 谢谢