Click here to Skip to main content
15,891,905 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
where do I find.. imports..." .h files". When I try to run an example something is always missing.

Masrtin
Posted

Normally .h (header) files will either come with any example (if they are application specific) or with the compiler (if they are system related).

Just use the
C++
#include <xxx.h>
statement at the top of your app, and it should pick them up - if your compiler is properly installed, it should tell the system where to find them.

What files is it complaining about?
 
Share this answer
 
shouldnt the properties of the project contain the "additional header files"?
so u need to add your path there...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900