W
Willy Denoyette [MVP]
Abra said:The problem seems to be the order of including headers ...
If I have this :
#include <process.h>
#include "stdafx.h"
, the compiler generates the error message.
If I have this :
#include "stdafx.h"
#include <process.h>
, the compiler compiles without errors.
Does anyone have an explanation for this behaviour ?
There is a general rule that say's #include "stdafx.h" should precede all
other includes.
But please, you might get better answers when you post such questions to the
vc NG.
Willy.