|
@@ -100,7 +100,7 @@ enum aiTextureOp
|
|
|
* 32 Bit integers to represent this enum.
|
|
|
*/
|
|
|
#ifndef SWIG
|
|
|
- _aiTextureOp_Force32Bit = 0x9fffffff
|
|
|
+ _aiTextureOp_Force32Bit = INT_MAX
|
|
|
#endif
|
|
|
//! @endcond
|
|
|
};
|
|
@@ -136,7 +136,7 @@ enum aiTextureMapMode
|
|
|
* 32 Bit integers to represent this enum.
|
|
|
*/
|
|
|
#ifndef SWIG
|
|
|
- _aiTextureMapMode_Force32Bit = 0x9fffffff
|
|
|
+ _aiTextureMapMode_Force32Bit = INT_MAX
|
|
|
#endif
|
|
|
//! @endcond
|
|
|
};
|
|
@@ -181,7 +181,7 @@ enum aiTextureMapping
|
|
|
* 32 Bit integers to represent this enum.
|
|
|
*/
|
|
|
#ifndef SWIG
|
|
|
- _aiTextureMapping_Force32Bit = 0x9fffffff
|
|
|
+ _aiTextureMapping_Force32Bit = INT_MAX
|
|
|
#endif
|
|
|
//! @endcond
|
|
|
};
|
|
@@ -301,7 +301,7 @@ enum aiTextureType
|
|
|
* 32 Bit integers to represent this enum.
|
|
|
*/
|
|
|
#ifndef SWIG
|
|
|
- _aiTextureType_Force32Bit = 0x9fffffff
|
|
|
+ _aiTextureType_Force32Bit = INT_MAX
|
|
|
#endif
|
|
|
//! @endcond
|
|
|
};
|
|
@@ -379,7 +379,7 @@ enum aiShadingMode
|
|
|
* 32 Bit integers to represent this enum.
|
|
|
*/
|
|
|
#ifndef SWIG
|
|
|
- _aiShadingMode_Force32Bit = 0x9fffffff
|
|
|
+ _aiShadingMode_Force32Bit = INT_MAX
|
|
|
#endif
|
|
|
//! @endcond
|
|
|
};
|
|
@@ -425,7 +425,7 @@ enum aiTextureFlags
|
|
|
* 32 Bit integers to represent this enum.
|
|
|
*/
|
|
|
#ifndef SWIG
|
|
|
- _aiTextureFlags_Force32Bit = 0x9fffffff
|
|
|
+ _aiTextureFlags_Force32Bit = INT_MAX
|
|
|
#endif
|
|
|
//! @endcond
|
|
|
};
|
|
@@ -474,7 +474,7 @@ enum aiBlendMode
|
|
|
* 32 Bit integers to represent this enum.
|
|
|
*/
|
|
|
#ifndef SWIG
|
|
|
- _aiBlendMode_Force32Bit = 0x9fffffff
|
|
|
+ _aiBlendMode_Force32Bit = INT_MAX
|
|
|
#endif
|
|
|
//! @endcond
|
|
|
};
|
|
@@ -568,7 +568,7 @@ enum aiPropertyTypeInfo
|
|
|
* compiler to map this enum to a 32 Bit integer.
|
|
|
*/
|
|
|
#ifndef SWIG
|
|
|
- _aiPTI_Force32Bit = 0x9fffffff
|
|
|
+ _aiPTI_Force32Bit = INT_MAX
|
|
|
#endif
|
|
|
};
|
|
|
|
|
@@ -657,7 +657,11 @@ struct aiMaterialProperty
|
|
|
* have to stick with the aiMaterialGetXXX family of unbound functions.
|
|
|
* The library defines a set of standard keys (AI_MATKEY_XXX).
|
|
|
*/
|
|
|
+#ifdef __cplusplus
|
|
|
struct ASSIMP_API aiMaterial
|
|
|
+#else
|
|
|
+struct aiMaterial
|
|
|
+#endif
|
|
|
{
|
|
|
|
|
|
#ifdef __cplusplus
|