00001 /********** 00002 Software License Agreement (BSD License) 00003 00004 Copyright (c) 2008, Meraka Institute 00005 All rights reserved. 00006 00007 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 00008 00009 * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 00010 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 00011 * Neither the name of the Meraka Institute nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 00012 00013 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00014 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00015 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 00016 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 00017 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00018 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00019 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00020 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00021 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00022 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00023 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00024 **********/ 00025 #pragma once 00026 00027 // Modify the following defines if you have to target a platform prior to the ones specified below. 00028 // Refer to MSDN for the latest info on corresponding values for different platforms. 00029 #ifndef WINVER // Allow use of features specific to Windows XP or later. 00030 #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows. 00031 #endif 00032 00033 #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later. 00034 #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows. 00035 #endif 00036 00037 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later. 00038 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later. 00039 #endif 00040 00041 #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later. 00042 #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE. 00043 #endif 00044 00045 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers 00046 // Windows Header Files: 00047 #include <windows.h> 00048 00049 00050 00051 // TODO: reference additional headers your program requires here