windows.h and MFC
Asked Answered
T

3

7

Why can't I include windows.h in afx(MFC) projects?

Thinker answered 17/2, 2011 at 8:55 Comment(0)
T
12

Typically, MFC application code includes afx.h or afxwin.h (the latter includes former). First two lines of windows.h are

#ifndef _WINDOWS_
#define _WINDOWS_

which means that _WINDOWS_ becomes defined if this header is included. Afx.h includes afxver_.h and this header includes afxv_w32.h which contains following code:

#ifdef _WINDOWS_
    #error WINDOWS.H already included. MFC apps must not #include <windows.h>
#endif
...
#include <windows.h>

So, if you include windows.h before MFC headers, you'll get this error generated in compile time and, as you can see, if you include afxwin.h you don't need to include windows.h yourself - it will already be included by afxv_w32.h.

Tiddlywinks answered 17/2, 2011 at 9:33 Comment(0)
M
2

Because in MFC you are not supposed to use it directly. AFAIR you should include afx.h instead, which in turn indirectly includes windows.h the proper way.

Mopes answered 17/2, 2011 at 8:57 Comment(0)
U
0

You can include windows.h; but you need to first include afx.h (or similar). If you got the error: "MFC apps must not #include <Windows.h>"; it is from including something like afx.h after including windows.h.

You might need to turn on 'show includes' if not sure how it got included.

Usher answered 6/7, 2021 at 20:40 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.