#pragma hdrstop may be inserted in the primary source
file at a point prior to the first token that does not belong
to a preprocessing directive. It enables the user to specify where
the set of header files subject to precompilation ends. For example,
#include "xxx.h"
#include "yyy.h"
#pragma hdrstop
#include "z.h"
Here, the precompiled header
file will include processing state for xxx.h and yyy.h
but not z.h. (This is useful if the user decides that the
information added by what follows the #pragma hdrstop does
not justify the creation of another PCH file.)