www.pudn.com > 在VC++ 6.0下利用共享内存、消息实现内部进程通讯.rar > WFClientView.h


// WFClientView.h : interface of the CWFClientView class 
// 
///////////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_WFCLIENTVIEW_H__4E80A3C9_7A63_4FB6_B15E_C03AC175F751__INCLUDED_) 
#define AFX_WFCLIENTVIEW_H__4E80A3C9_7A63_4FB6_B15E_C03AC175F751__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
#include "ClientData.h" 
 
class CWFClientView : public CFormView 
{ 
protected: // create from serialization only 
	CWFClientView(); 
	DECLARE_DYNCREATE(CWFClientView) 
 
public: 
	//{{AFX_DATA(CWFClientView) 
	enum { IDD = IDD_WFCLIENT_FORM }; 
	CButton	m_btn2; 
	CString	m_edit10; 
	CString	m_edit11; 
	CString	m_edit12; 
	CString	m_edit13; 
	CString	m_edit14; 
	CString	m_edit15; 
	CString	m_edit16; 
	CString	m_edit17; 
	CString	m_edit18; 
	CString	m_edit19; 
	CString	m_edit2; 
	CString	m_edit3; 
	CString	m_edit4; 
	CString	m_edit5; 
	CString	m_edit6; 
	CString	m_edit7; 
	CString	m_edit8; 
	CString	m_edit9; 
	CString	m_edit20; 
	//}}AFX_DATA 
 
	CClientData m_ClientData; 
// Attributes 
public: 
	CWFClientDoc* GetDocument(); 
 
// Operations 
public: 
 
// Overrides 
	// ClassWizard generated virtual function overrides 
	//{{AFX_VIRTUAL(CWFClientView) 
	public: 
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs); 
	protected: 
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support 
	virtual void OnInitialUpdate(); // called first time after construct 
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo); 
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo); 
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo); 
	virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo); 
	//}}AFX_VIRTUAL 
 
// Implementation 
public: 
	virtual ~CWFClientView(); 
#ifdef _DEBUG 
	virtual void AssertValid() const; 
	virtual void Dump(CDumpContext& dc) const; 
#endif 
 
protected: 
 
// Generated message map functions 
protected: 
	//{{AFX_MSG(CWFClientView) 
	afx_msg void OnButton1(); 
	afx_msg void OnButton2(); 
	afx_msg void OnButton3(); 
	afx_msg void OnButton4(); 
	afx_msg void OnButton5(); 
	//}}AFX_MSG 
	 
	DECLARE_MESSAGE_MAP() 
}; 
 
#ifndef _DEBUG  // debug version in WFClientView.cpp 
inline CWFClientDoc* CWFClientView::GetDocument() 
   { return (CWFClientDoc*)m_pDocument; } 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
 
//{{AFX_INSERT_LOCATION}} 
// Microsoft Visual C++ will insert additional declarations immediately before the previous line. 
 
#endif // !defined(AFX_WFCLIENTVIEW_H__4E80A3C9_7A63_4FB6_B15E_C03AC175F751__INCLUDED_)