WindowsDefines.h

Go to the documentation of this file.
00001 //**************************************************************************/
00002 // Copyright (c) 1998-2008 Autodesk, Inc.
00003 // All rights reserved.
00004 // 
00005 // These coded instructions, statements, and computer programs contain
00006 // unpublished proprietary information written by Autodesk, Inc., and are
00007 // protected by Federal copyright law. They may not be disclosed to third
00008 // parties or copied or duplicated in any form, in whole or in part, without
00009 // the prior written consent of Autodesk, Inc.
00010 //**************************************************************************/
00011 // AUTHOR: Benjamin Cecchetto
00012 // DATE: 2008-03-14
00013 //***************************************************************************/
00014 
00015 #pragma once
00016 
00017 #ifndef STRICT
00018 #define STRICT
00019 #endif
00020 
00021 #ifndef WINVER              // Allow use of features specific to Windows XP or later.
00022 #define WINVER 0x0501       // Change this to the appropriate value to target Windows Vista or later.
00023 #endif
00024 
00025 #ifndef _WIN32_WINNT        // Allow use of features specific to Windows XP or later.
00026 #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target Windows Vista or later.
00027 #endif                      
00028 
00029 #ifndef _WIN32_WINDOWS      // Allow use of features specific to Windows XP or later.
00030 #define _WIN32_WINDOWS 0x0501 
00031 #endif
00032 
00033 #ifndef _WIN32_IE           // Allow use of features specific to IE 5.01 or later.
00034 #define _WIN32_IE 0x0501    // Change this to the appropriate value to target IE 5.5 or later.
00035 #endif
00036 
00037 #include <windows.h>
00038