_AFX_SECURE_NO_WARNINGS
Supprime les avertissements du compilateur pour utiliser les fonctions déconseillées MFC.
_AFX_SECURE_NO_WARNINGS
Exemple
Cet exemple de code génère un avertissement du compilateur si le _AFX_SECURE_NO_WARNINGS n'étaient pas définis.
// define this before including any afx files in stdafx.h
#define _AFX_SECURE_NO_WARNINGS
CRichEditCtrl* pRichEdit = new CRichEditCtrl;
pRichEdit->Create(WS_CHILD|WS_VISIBLE|WS_BORDER|ES_MULTILINE,
CRect(10,10,100,200), pParentWnd, 1);
char sz[256];
pRichEdit->GetSelText(sz);