1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
<?xml version="1.0" encoding="UTF-8"?>
<fpdoc-descriptions>
<package name="freetypelaz">
<!--
====================================================================
TTError
====================================================================
-->
<module name="TTError">
<short>Simple error management for the FreeType library.</short>
<descr>
<p>
Copyright 1996, 1997 by David Turner, Robert Wilhelm, and Werner Lemberg.
</p>
<p>
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.
</p>
<p>
The Pascal version of the library doesn't support multiple threads. We use a global error
variable, called simply "error" to report all defects. The various functions return an error
condition, which can be either Success (false) or Failure (true).
</p>
<p>
Note that the use of macros in the C version to automate error reporting makes the two source
trees very similar, even if they differ from some design points like this one.
</p>
</descr>
<!-- unresolved external references -->
<element name="TTTypes"/>
<element name="Check_Error">
<short/>
<descr/>
<seealso/>
</element>
<element name="Check_Error.error">
<short/>
</element>
<element name="Panic1">
<short/>
<descr/>
<seealso/>
</element>
<element name="Panic1.message">
<short/>
</element>
<element name="Trace1">
<short/>
<descr/>
<seealso/>
</element>
<element name="Trace1.message">
<short/>
</element>
<element name="Err_Ras_None">
<short/>
<descr/>
<seealso/>
</element>
<element name="Err_Ras_NotIni">
<short>Rasterizer not Initialized.</short>
<descr/>
<seealso/>
</element>
<element name="Err_Ras_Overflow">
<short>Profile Table Overflow.</short>
<descr/>
<seealso/>
</element>
<element name="Err_Ras_Neg_H">
<short>Negative Height encountered.</short>
<descr/>
<seealso/>
</element>
<element name="Err_Ras_Invalid">
<short>Invalid value encountered.</short>
<descr/>
<seealso/>
</element>
<element name="Err_Ras_Invalid_Contours">
<short/>
<descr/>
<seealso/>
</element>
<element name="error">
<short>Global error variable used for the FreeType library.</short>
<descr/>
<seealso/>
</element>
</module>
<!-- TTError -->
</package>
</fpdoc-descriptions>
|