mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 18:26:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			267 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			267 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // Wrapper for MSVC
 | |
| #ifndef _STDINT_WRAPPER_H
 | |
| #define _STDINT_WRAPPER_H
 | |
| 
 | |
| #include <boost/cstdint.hpp>
 | |
| 
 | |
| // Pull the boost names into the global namespace for convenience
 | |
| using boost::int32_t;
 | |
| using boost::uint32_t;
 | |
| using boost::int64_t;
 | |
| using boost::uint64_t;
 | |
| 
 | |
| #endif
 |