cmake/Tests/MFC/mfc1/mfc1.h

30 lines
485 B
C
Raw Normal View History

2012-02-18 12:40:36 +02:00
// mfc1.h : main header file for the mfc1 application
//
#pragma once
#ifndef __AFXWIN_H__
2018-08-09 18:06:22 +02:00
# error include 'stdafx.h' before including this file for PCH
2012-02-18 12:40:36 +02:00
#endif
2016-07-09 11:21:54 +02:00
#include "resource.h" // main symbols
2012-02-18 12:40:36 +02:00
// Cmfc1App:
// See mfc1.cpp for the implementation of this class
//
class Cmfc1App : public CWinApp
{
public:
2016-07-09 11:21:54 +02:00
Cmfc1App();
2012-02-18 12:40:36 +02:00
2016-07-09 11:21:54 +02:00
// Overrides
2012-02-18 12:40:36 +02:00
public:
2016-07-09 11:21:54 +02:00
virtual BOOL InitInstance();
2012-02-18 12:40:36 +02:00
2016-07-09 11:21:54 +02:00
// Implementation
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
2012-02-18 12:40:36 +02:00
};
extern Cmfc1App theApp;