summaryrefslogtreecommitdiff
path: root/include/freetype/ftmm.h
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2000-11-30 23:12:33 +0000
committerDavid Turner <david@freetype.org>2000-11-30 23:12:33 +0000
commit8fba32d2d6f284bfd49ed6c0557880e0bb692f49 (patch)
treeb56c56d52c614c3165efe0f2ffeaf2b14ac10dda /include/freetype/ftmm.h
parentc261b63aabaf32e885038023cada5360dea128be (diff)
downloadfreetype2-8fba32d2d6f284bfd49ed6c0557880e0bb692f49.tar.gz
introduced the new <freetype/config/ftbuild.h> file to determine
where is the top-level include directory for all public, configuration and internal header files..
Diffstat (limited to 'include/freetype/ftmm.h')
-rw-r--r--include/freetype/ftmm.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/include/freetype/ftmm.h b/include/freetype/ftmm.h
index 6c9b1dca6..7734786d8 100644
--- a/include/freetype/ftmm.h
+++ b/include/freetype/ftmm.h
@@ -16,15 +16,16 @@
/***************************************************************************/
-#ifndef FTMM_H
-#define FTMM_H
+#ifndef __FTMM_H__
+#define __FTMM_H__
-#include <freetype/t1tables.h>
-
-#ifdef __cplusplus
- extern "C" {
+#ifndef FT_BUILD_H
+# define FT_BUILD_H <freetype/config/ftbuild.h>
#endif
+#include FT_BUILD_H
+#include FT_TYPE1_TABLES_H
+FT_BEGIN_HEADER
/*************************************************************************/
/* */
@@ -167,11 +168,9 @@
FT_Fixed* coords );
-#ifdef __cplusplus
- }
-#endif
+FT_END_HEADER
-#endif /* FTMM_H */
+#endif /* __FTMM_H__ */
/* END */