summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype2/include/freetype/config/ftconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/freetype2/include/freetype/config/ftconfig.h')
-rw-r--r--Build/source/libs/freetype2/include/freetype/config/ftconfig.h58
1 files changed, 55 insertions, 3 deletions
diff --git a/Build/source/libs/freetype2/include/freetype/config/ftconfig.h b/Build/source/libs/freetype2/include/freetype/config/ftconfig.h
index 1547f5adb14..09b2cf951c1 100644
--- a/Build/source/libs/freetype2/include/freetype/config/ftconfig.h
+++ b/Build/source/libs/freetype2/include/freetype/config/ftconfig.h
@@ -139,13 +139,65 @@ FT_BEGIN_HEADER
/*************************************************************************/
/* */
- /* IntN types */
+ /* <Section> */
+ /* basic_types */
/* */
- /* Used to guarantee the size of some specific integers. */
+ /*************************************************************************/
+
+
+ /*************************************************************************/
+ /* */
+ /* <Type> */
+ /* FT_Int16 */
+ /* */
+ /* <Description> */
+ /* A typedef for a 16bit signed integer type. */
+ /* */
+ typedef signed short FT_Int16;
+
+
+ /*************************************************************************/
+ /* */
+ /* <Type> */
+ /* FT_UInt16 */
+ /* */
+ /* <Description> */
+ /* A typedef for a 16bit unsigned integer type. */
/* */
- typedef signed short FT_Int16;
typedef unsigned short FT_UInt16;
+ /* */
+
+
+ /* this #if 0 ... #endif clause is for documentation purposes */
+#if 0
+
+ /*************************************************************************/
+ /* */
+ /* <Type> */
+ /* FT_Int32 */
+ /* */
+ /* <Description> */
+ /* A typedef for a 32bit signed integer type. The size depends on */
+ /* the configuration. */
+ /* */
+ typedef signed XXX FT_Int32;
+
+
+ /*************************************************************************/
+ /* */
+ /* <Type> */
+ /* FT_UInt32 */
+ /* */
+ /* A typedef for a 32bit unsigned integer type. The size depends on */
+ /* the configuration. */
+ /* */
+ typedef unsigned XXX FT_UInt32;
+
+ /* */
+
+#endif
+
#if FT_SIZEOF_INT == (32 / FT_CHAR_BIT)
typedef signed int FT_Int32;