InfomationWnd.cpp
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:1k
源码类别:

P2P编程

开发平台:

Visual C++

  1. // InfomationWnd.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "testbt.h"
  5. #include "InfomationWnd.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CInfomationWnd
  13. CInfomationWnd::CInfomationWnd()
  14. {
  15. }
  16. CInfomationWnd::~CInfomationWnd()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CInfomationWnd, CWnd)
  20. //{{AFX_MSG_MAP(CInfomationWnd)
  21. ON_WM_CREATE()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CInfomationWnd message handlers
  26. BOOL CInfomationWnd::CreateEx(CWnd *pParent, CRect rc, long lID, long lParam)
  27. {
  28. return Create(0, 0, WS_CHILD|WS_BORDER|WS_VISIBLE|WS_VSCROLL, rc, pParent, lID);
  29. }
  30. int CInfomationWnd::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  31. {
  32. if (CWnd::OnCreate(lpCreateStruct) == -1)
  33. return -1;
  34. return 0;
  35. }