// EngineMsg.cpp : implementation file // #include "stdafx.h" #include "ocrmem.h" #include "EngineMsg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CEngineMsg dialog CEngineMsg::CEngineMsg(CWnd* pParent /*=NULL*/) : CDialog(CEngineMsg::IDD, pParent) { //{{AFX_DATA_INIT(CEngineMsg) // NOTE: the ClassWizard will add member initialization here //}}AFX_DATA_INIT } void CEngineMsg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CEngineMsg) // NOTE: the ClassWizard will add DDX and DDV calls here //}}AFX_DATA_MAP DDX_Control(pDX, IDC_OCR_ENGINE_ADDRESS, m_OCRLink); } BEGIN_MESSAGE_MAP(CEngineMsg, CDialog) //{{AFX_MSG_MAP(CEngineMsg) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CEngineMsg message handlers BOOL CEngineMsg::OnInitDialog() { CDialog::OnInitDialog(); return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE } BOOL CEngineMsg::OnCommand(WPARAM wParam, LPARAM lParam) { return CDialog::OnCommand(wParam, lParam); }