Advertisement

stdafx.h

Started by December 17, 2000 10:04 PM
1 comment, last by Bleakcabal 24 years, 1 month ago
I comliled some code I found on the net with MSVC 6.0 personal edition which included stdafx.h but MSVC doesnt seem to have in its standard include directory. I searched for it on my comp and it came out about 50 times from all different sources and a lot of them were diferent in size, date, etc. I tried using the most probable one to work but it didnt ? I always tought MSVC was complete as for the header files it supported ? What''s up ? WHO DO THEY THINK THEY''RE FOOLING : YOU ?
GARAL website
WHO DO THEYTHINK THEY'REFOOLING : YOU ?
it''s something to do with system files. It''s generated each time by VC++

// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently

"That''s not a bug, it''s a feature!"
--me
if you think programming is like sex, you probably haven't done much of either.-------------- - capn_midnight
Advertisement
#inlcude "stdafx.h"

It''s not a library header, it''s a bunch of crap to be put in the precompiled header to increase re-build times, and is different for each project...

Sooo the code you downloaded off the net may not have the stdafx.h with it... in which case you may be boned... or you have to reconstruct what they put into thier stdafx.h
- The trade-off between price and quality does not exist in Japan. Rather, the idea that high quality brings on cost reduction is widely accepted.-- Tajima & Matsubara

This topic is closed to new replies.

Advertisement