1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #include "stdafx.h"
- #include "LYFZSendMsg.h"
- #include "ClientWnd.h"
- #include "JPEG.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- CClientWnd::CClientWnd()
- {
- }
- CClientWnd::~CClientWnd()
- {
- }
- BEGIN_MESSAGE_MAP(CClientWnd, CWnd)
-
- ON_WM_ERASEBKGND()
-
- END_MESSAGE_MAP()
- BOOL CClientWnd::OnEraseBkgnd(CDC* pDC)
- {
-
- return CWnd::OnEraseBkgnd(pDC);
- return 1;
- }
|