summaryrefslogtreecommitdiff
path: root/src/vf/vflib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vf/vflib.c')
-rw-r--r--src/vf/vflib.c59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/vf/vflib.c b/src/vf/vflib.c
new file mode 100644
index 000000000..ec492292f
--- /dev/null
+++ b/src/vf/vflib.c
@@ -0,0 +1,59 @@
+/****************************************************************************
+ *
+ * vflib.c
+ *
+ * FreeType font driver for TeX's VF FONT files.
+ *
+ * Copyright 1996-2018 by
+ * David Turner, Robert Wilhelm, and Werner Lemberg.
+ *
+ * This file is part of the FreeType project, and may only be used,
+ * modified, and distributed under the terms of the FreeType project
+ * license, LICENSE.TXT. By continuing to use, modify, or distribute
+ * this file you indicate that you have read the license and
+ * understand and accept it fully.
+ *
+ */
+
+#include <ft2build.h>
+
+#include FT_FREETYPE_H
+#include FT_INTERNAL_DEBUG_H
+#include FT_INTERNAL_STREAM_H
+#include FT_INTERNAL_OBJECTS_H
+#include FT_SYSTEM_H
+#include FT_CONFIG_CONFIG_H
+#include FT_ERRORS_H
+#include FT_TYPES_H
+
+#include "vf.h"
+#include "vfdrivr.h"
+#include "vferror.h"
+
+
+ /**************************************************************************
+ *
+ * The macro FT_COMPONENT is used in trace mode. It is an implicit
+ * parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log
+ * messages during execution.
+ */
+#undef FT_COMPONENT
+#define FT_COMPONENT trace_vflib
+
+ /**************************************************************************
+ *
+ * VF font utility functions.
+ *
+ */
+
+ /* TO-DO */
+
+ /**************************************************************************
+ *
+ * API.
+ *
+ */
+
+ /* TO-DO */
+
+/* END */