mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 05:56:39 +00:00 
			
		
		
		
	Details: - create a sub directory to store CMake scripts (later more to come) - add a search Ogre package script (may be replaced later by "official" Ogre 1.7 search script, since they switched to CMake, yeah !) - fixed header issues being not available with MSVC and replaced by equivalent functions if assumed portable enough
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			C
		
	
	
	
	
	
// Wrapper for MSVC
 | 
						|
#ifndef _STDINT_WRAPPER_H
 | 
						|
#define _STDINT_WRAPPER_H
 | 
						|
 | 
						|
typedef int int32_t;
 | 
						|
typedef unsigned int uint32_t;
 | 
						|
 | 
						|
typedef long long int64_t;
 | 
						|
typedef unsigned long long uint64_t;
 | 
						|
 | 
						|
#endif
 |