"L. Spiro Engine"

F:/My Projects/LSEngine/Modules/LSStandardLib/Src/Windows/LSSTDWindows.h

00001 
00016 #ifndef __LSSTD_WINDOWS_H__
00017 #define __LSSTD_WINDOWS_H__
00018 
00019 #include "../LSSTDStandardLib.h"
00020 
00021 #ifdef LSE_WINDOWS
00022 // Windows.
00023 // Set the Windows version.
00024 #ifndef WINVER
00025 #define WINVER         0x0501
00026 #endif
00027 #ifndef _WIN32_WINDOWS
00028 #define _WIN32_WINDOWS 0x0501 
00029 #endif
00030 #ifndef _WIN32_WINNT
00031 #define _WIN32_WINNT   0x0501
00032 #endif
00033 
00034 #define NOMINMAX                                // We do not want min/max as macros.
00035 #define WIN32_LEAN_AND_MEAN
00036 #include <windows.h>                    // ::QueryPerformanceCounter()/::QueryPerformanceFrequency().
00037 
00038 #endif  // #ifdef LSE_WINDOWS
00039 
00040 #endif  // __LSSTD_WINDOWS_H__
00041 
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator