🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Cannot find QPEGLOBAL.H

Started by
0 comments, last by lack the hack 18 years ago
Hi, I am in the process of coding an OPENGL saver, and I always get this error . . . C:\Program Files\Microsoft Visual Studio 8\VC\include\resource.h(23) : fatal error C1083: Cannot open include file: 'qtopia/qpeglobal.h': No such file or directory What do I need to do?? I am using Visual C++ 2005 Express edition. Many thanks, Kevin
Advertisement
well this may be the most obvious question for this problem...but i guess you should get the basics out of the way.

1. Does this file even exist?
2. Also, how are you doing it, like this:
#include "qpeglobal.h"//OR#include <qpeglobal.h>

if your doing the former, it should be in the same folder as the project.

if it's the latter, then it should be in the include directory, which on your computer looks as if it's in:
C:\Program Files\Microsoft Visual Studio 8\VC\include
looks about right, since i have VC7, and is pretty much the same thing.

hope that helps
--nathan

This topic is closed to new replies.

Advertisement