www.pudn.com > ZFXMath-latest.zip > types.h


/// \file
///
/// @brief Diverse Typdefinitionen
///
/// Funktionen:

#ifndef _ZFXMATH_INCLUDE_TYPES_H_
#define _ZFXMATH_INCLUDE_TYPES_H_


#ifndef __int8
typedef char __int8;
#endif

#ifndef __int32
typedef int __int32;
#endif

#ifndef __int64
typedef long long __int64;
#endif

#ifndef size_t
typedef unsigned __int64 size_t;
#endif

#endif