2025-11-27 16:46:48 +09:00

43 lines
1014 B
C++

// Preview.h : main header file for the PREVIEW application
//
#include "OXWinApp.h"
#ifndef __AFXWIN_H__
#error include 'stdafx.h' before including this file for PCH
#endif
#include "resource.h" // main symbols
/////////////////////////////////////////////////////////////////////////////
// CPreviewApp:
// See Preview.cpp for the implementation of this class
//
class CPreviewApp : public COXWinApp
{
public:
CPreviewApp();
virtual CFileDialog* NewFileDialog(BOOL bOpenFileDialog);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPreviewApp)
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
//}}AFX_VIRTUAL
// Implementation
//{{AFX_MSG(CPreviewApp)
afx_msg void OnAppAbout();
// NOTE - the ClassWizard will add and remove member functions here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////