>>_MSC_VER >>Defines
the compiler
version. Defined
as 1200
for Microsoft Visual
C++ 6.0.
>>Always defined.
>>_MFC_VER >>Defines
the MFC
version. Defined as
0x0421 for
Microsoft Foundation Class
>>Library
4.21. Always
defined. >>#pragma
once >>Specifies
that the
file, in which
the pragma
resides, will be
included (opened)
>>only
once by
the compiler in
a build. A
common use
for this pragma
is the
>>following: >>//header.h
>>#pragma
once >>//
Your C or
C++ code
would
follow: