Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When i include few header files like #include "afxwin.h" and #include "afxext.h" in Dev C++, its showing me file not found. Can anyone help me?

share|improve this question
These are MS Visual C++ precompiled headers, and you aren't going to find them in GCC based compilers. en.wikipedia.org/wiki/Precompiled_header – Orwell Dec 7 '12 at 20:07
So i cannot use these files in Dev C++? – Akshay Dec 7 '12 at 20:12

2 Answers

up vote 1 down vote accepted

I was having the same problem and this worked for me

In filename.cpp, I put: #include "full path to filename.h"

When using the file, I had put: #include "full path to filename.h" and #include "full path to filename.cpp"

share|improve this answer

These are MS Visual C++ precompiled headers (related to MFC):

http://en.wikipedia.org/wiki/Precompiled_header

You might get lucky and be able to compile and use them in combination with GCC/Dev-C++, but I wouldn't bet on it (see the third comment on the opening post):

How do I move from the MSVC compiler to GCC on Windows?

Assuming that comment is correct, you won't be able to use MFC on GCC compilers. And because Dev-C++ uses these, you won't be able to use MFC in combination with Dev-C++ either. As an alternative, you could try out a free version of MS Visual Studio to be able to use the headers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.