2011-10-25 00:55:52 +04:00
|
|
|
// mfc1.h : main header file for the mfc1 application
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef __AFXWIN_H__
|
2016-05-16 17:34:04 +03:00
|
|
|
#error include 'stdafx.h' before including this file for PCH
|
2011-10-25 00:55:52 +04:00
|
|
|
#endif
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
#include "resource.h" // main symbols
|
2011-10-25 00:55:52 +04:00
|
|
|
|
|
|
|
// Cmfc1App:
|
|
|
|
// See mfc1.cpp for the implementation of this class
|
|
|
|
//
|
|
|
|
|
|
|
|
class Cmfc1App : public CWinApp
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
Cmfc1App();
|
2011-10-25 00:55:52 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
// Overrides
|
2011-10-25 00:55:52 +04:00
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual BOOL InitInstance();
|
2011-10-25 00:55:52 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
// Implementation
|
|
|
|
afx_msg void OnAppAbout();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
2011-10-25 00:55:52 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
extern Cmfc1App theApp;
|