Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stdafx_common_afx.h « include - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee5ae2be4b042bc476ab08ac917dbaaf8e7ac810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// turns off MFC's hiding of some common and often safely ignored warning messages
#define _AFX_ALL_WARNINGS

#if (_MSC_VER < 1600)
#include <afx.h>
#endif

#include <afxwin.h>         // MFC core and standard components

#if (_MSC_VER >= 1600)
#include "afxpriv.h"
#include "afxole.h"
#include "..\src\mfc\oleimpl2.h"
#include "..\src\mfc\afximpl.h"
#endif