Files
zodiacon-WFPExplorer/WFPExplorer/View.cpp
T
Pavel Yosifovich 1d1c129bdd Add project files.
2022-10-29 00:18:04 -04:00

25 lines
490 B
C++

// View.cpp : implementation of the CView class
//
/////////////////////////////////////////////////////////////////////////////
#include "pch.h"
#include "resource.h"
#include "View.h"
BOOL CView::PreTranslateMessage(MSG* pMsg) {
pMsg;
return FALSE;
}
void CView::OnFinalMessage(HWND /*hWnd*/) {
delete this;
}
LRESULT CView::OnPaint(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) {
CPaintDC dc(m_hWnd);
//TODO: Add your drawing code here
return 0;
}