Compiler error when including afxtempl.h
-
I want to use the class
CList
for my project, but I get the following compiler error as soon as I do#include <afxtempl.h>
Compiling...
snaplogger_main.cpp
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
CSnapLogger.cpp
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
CDeviceFileParser.cpp
c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\afxv_w32.h(18) : fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h>
CCommsManager.cpp
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server) -
I want to use the class
CList
for my project, but I get the following compiler error as soon as I do#include <afxtempl.h>
Compiling...
snaplogger_main.cpp
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
CSnapLogger.cpp
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
CDeviceFileParser.cpp
c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\afxv_w32.h(18) : fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h>
CCommsManager.cpp
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)piul wrote:
Compiling... snaplogger_main.cpp WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
Not a real error, but only an information. [...]
piul wrote:
CDeviceFileParser.cpp c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\afxv_w32.h(18) : fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include
Do you include Windows.h anywhere explicitly? How does the stdafx.h of your project look like? Where do you include afxtempl.h? Regards, Christoph
-
piul wrote:
Compiling... snaplogger_main.cpp WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
Not a real error, but only an information. [...]
piul wrote:
CDeviceFileParser.cpp c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\afxv_w32.h(18) : fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include
Do you include Windows.h anywhere explicitly? How does the stdafx.h of your project look like? Where do you include afxtempl.h? Regards, Christoph
-
I want to use the class
CList
for my project, but I get the following compiler error as soon as I do#include <afxtempl.h>
Compiling...
snaplogger_main.cpp
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
CSnapLogger.cpp
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)
CDeviceFileParser.cpp
c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\afxv_w32.h(18) : fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include <windows.h>
CCommsManager.cpp
WINVER not defined. Defaulting to 0x0501 (Windows XP and Windows .NET Server)piul wrote:
I want to use the class CList for my project, but I get the following compiler error as soon as I do #include
Do you have an MFC-based project? If not, you might consider using one of the STL containers instead.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
-
I do not see any stdafx.h in my project. And no, I do not include Windows.h explicitly. afxtempl.h is included in CDeviceFileParser.h Any idea of why windows.h is being included? And why should this be a problem??
What kind of application did you create? Is it a MFC application? Seems so since you intend to use afxtempl.h. Can you please check the the project settings? Regards, Christoph
-
What kind of application did you create? Is it a MFC application? Seems so since you intend to use afxtempl.h. Can you please check the the project settings? Regards, Christoph
-
piul wrote:
I want to use the class CList for my project, but I get the following compiler error as soon as I do #include
Do you have an MFC-based project? If not, you might consider using one of the STL containers instead.
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
I might be easier if I say what I want to do. I want to store in a variable a number of strings. The number of them will be variable and not known at the time of declaring the list/array/whatever. For what I have been reading I can do it with std::list, although I've never used it before.
-
I might be easier if I say what I want to do. I want to store in a variable a number of strings. The number of them will be variable and not known at the time of declaring the list/array/whatever. For what I have been reading I can do it with std::list, although I've never used it before.
piul wrote:
For what I have been reading I can do it with std::list...
True, as well as
std::vector
."One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"Man who follows car will be exhausted." - Confucius
-
I am not very sure if it is a MFC application, I did not create it myself. Project properties says: Use of MFC : Use Standard Windows Libraries
Maybe it would be the easiest way to create an empty MFC project and add the files of the Win32 project to that? Or simply try to change the "Use of MFC" to "Use MFC in a Static library" and rebuild. Don't know if this will work. Regards, Christoph
-
Maybe it would be the easiest way to create an empty MFC project and add the files of the Win32 project to that? Or simply try to change the "Use of MFC" to "Use MFC in a Static library" and rebuild. Don't know if this will work. Regards, Christoph
-
Oh... I've just found a place where windows.h is included explicitly. What a mess!! I should start tidying all this up first of all... Thanks!
You're welcome. Regards, Christoph