summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype/freetype-1.5/lib/ttinterp.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/freetype/freetype-1.5/lib/ttinterp.h')
-rw-r--r--Build/source/libs/freetype/freetype-1.5/lib/ttinterp.h55
1 files changed, 0 insertions, 55 deletions
diff --git a/Build/source/libs/freetype/freetype-1.5/lib/ttinterp.h b/Build/source/libs/freetype/freetype-1.5/lib/ttinterp.h
deleted file mode 100644
index 2c92a0ae59d..00000000000
--- a/Build/source/libs/freetype/freetype-1.5/lib/ttinterp.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/*******************************************************************
- *
- * ttinterp.h 2.2
- *
- * TrueType bytecode intepreter.
- *
- * Copyright 1996-2001 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.
- *
- *
- * Changes between 2.2 and 2.1:
- *
- * - a small bugfix in the Push opcodes
- *
- * Changes between 2.1 and 2.0:
- *
- * - created the TTExec component to take care of all execution
- * context management. The interpreter has now one single
- * function.
- *
- * - made some changes to support re-entrancy. The re-entrant
- * interpreter is smaller!
- *
- ******************************************************************/
-
-#ifndef TTINTERP_H
-#define TTINTERP_H
-
-#include "ttconfig.h"
-#include "ttobjs.h"
-
-
-#ifdef __cplusplus
- extern "C" {
-#endif
-
- /* Run instructions in current execution context */
-
- FT_INTERNAL_DEF( TT_Error )
- RunIns( PExecution_Context exc );
-
-#ifdef __cplusplus
- }
-#endif
-
-#endif /* TTINTERP_H */
-
-
-/* END */