InfomationWnd.cpp
资源名称:GGBT.rar [点击查看]
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:1k
源码类别:
P2P编程
开发平台:
Visual C++
- // InfomationWnd.cpp : implementation file
- //
- #include "stdafx.h"
- #include "testbt.h"
- #include "InfomationWnd.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CInfomationWnd
- CInfomationWnd::CInfomationWnd()
- {
- }
- CInfomationWnd::~CInfomationWnd()
- {
- }
- BEGIN_MESSAGE_MAP(CInfomationWnd, CWnd)
- //{{AFX_MSG_MAP(CInfomationWnd)
- ON_WM_CREATE()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CInfomationWnd message handlers
- BOOL CInfomationWnd::CreateEx(CWnd *pParent, CRect rc, long lID, long lParam)
- {
- return Create(0, 0, WS_CHILD|WS_BORDER|WS_VISIBLE|WS_VSCROLL, rc, pParent, lID);
- }
- int CInfomationWnd::OnCreate(LPCREATESTRUCT lpCreateStruct)
- {
- if (CWnd::OnCreate(lpCreateStruct) == -1)
- return -1;
- return 0;
- }