47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
|
// ImageViewDlg.h : header file
|
||
|
//
|
||
|
|
||
|
#if !defined(AFX_IMAGEVIEWDLG_H__02B7CCE1_C6CF_447C_8414_D17DE15FDE96__INCLUDED_)
|
||
|
#define AFX_IMAGEVIEWDLG_H__02B7CCE1_C6CF_447C_8414_D17DE15FDE96__INCLUDED_
|
||
|
|
||
|
#if _MSC_VER >= 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER >= 1000
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// CImageViewDlg dialog
|
||
|
|
||
|
class CImageViewDlg : public CDialog
|
||
|
{
|
||
|
// Construction
|
||
|
public:
|
||
|
CImageViewDlg(CWnd* pParent = NULL); // standard constructor
|
||
|
|
||
|
// Dialog Data
|
||
|
//{{AFX_DATA(CImageViewDlg)
|
||
|
enum { IDD = IDD_IMAGEVIEW_DIALOG };
|
||
|
// NOTE: the ClassWizard will add data members here
|
||
|
//}}AFX_DATA
|
||
|
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(CImageViewDlg)
|
||
|
protected:
|
||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
protected:
|
||
|
HICON m_hIcon;
|
||
|
|
||
|
// Generated message map functions
|
||
|
//{{AFX_MSG(CImageViewDlg)
|
||
|
virtual BOOL OnInitDialog();
|
||
|
//}}AFX_MSG
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
};
|
||
|
|
||
|
//{{AFX_INSERT_LOCATION}}
|
||
|
// Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.
|
||
|
|
||
|
#endif // !defined(AFX_IMAGEVIEWDLG_H__02B7CCE1_C6CF_447C_8414_D17DE15FDE96__INCLUDED_)
|