OpenMW
libs/platform/stdint.h
Go to the documentation of this file.
00001 // Wrapper for MSVC
00002 #ifndef _STDINT_WRAPPER_H
00003 #define _STDINT_WRAPPER_H
00004 
00005 #if (_MSC_VER >= 1600)
00006 
00007 #include <cstdint>
00008 
00009 #else
00010 
00011 #include <boost/cstdint.hpp>
00012 
00013 // Pull the boost names into the global namespace for convenience
00014 using boost::int32_t;
00015 using boost::uint32_t;
00016 using boost::int64_t;
00017 using boost::uint64_t;
00018 
00019 #endif
00020 
00021 #endif