eVC++ 4.0 can't find process.h and iostream.h files
Mobile
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, I'm trying to port an existing VC++ 6.0 code to eVC++ 4.0 and the compiler cannot find the file and I tried changing to to no avail Any help is appreciated. THX! G. Weideman
You may find that the features you're trying to use aren't available on the platform you're targetting. Ensure you've selected the right platform. Alternatively, the functions you're trying to use may not even exist on CE. For example,
system
has never been present. Use the Windows functionCreateProcess
instead. iostream.h is obsolete and non-standard anyway; you should be using the newer standard<iostream>
header. Stability. What an interesting concept. -- Chris Maunder