IEEdit.h
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. #if !defined(AFX_IEEDIT_H__78BA85F8_F386_4B19_9598_A93F27FCFB31__INCLUDED_)
  2. #define AFX_IEEDIT_H__78BA85F8_F386_4B19_9598_A93F27FCFB31__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // IEEdit.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CIEEdit window
  10. class CIEEdit : public CEdit
  11. {
  12. public:
  13.          CIEEdit( );
  14.     virtual ~CIEEdit( );
  15. void      RegisterGetURLFunction( void ( * OnAddress )( void * wParam ) , void * wParam )
  16. {
  17. this->OnAddress = OnAddress;
  18. this->wParam = wParam;
  19. }
  20. protected:
  21. //{{AFX_VIRTUAL(CIEEdit)
  22. //}}AFX_VIRTUAL
  23. //{{AFX_MSG(CIEEdit)
  24. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  25. //}}AFX_MSG
  26. DECLARE_MESSAGE_MAP()
  27. private:
  28. void ( * OnAddress )( void * wParam );
  29. void  * wParam;
  30. };
  31. /////////////////////////////////////////////////////////////////////////////
  32. //{{AFX_INSERT_LOCATION}}
  33. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  34. #endif // !defined(AFX_IEEDIT_H__78BA85F8_F386_4B19_9598_A93F27FCFB31__INCLUDED_)