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
|
<?xml version="1.0"?>
<!DOCTYPE glossary PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
[
<!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED 'http://www.w3.org/2003/XInclude'">
]>
<glossary id="annotation-glossary">
<title>Annotation Glossary</title>
<glossdiv><title>A</title>
<glossentry>
<glossterm><anchor id="annotation-glossterm-allow-none"/>allow-none</glossterm>
<glossdef>
<para>NULL is OK, both for passing and for returning.</para>
</glossdef>
</glossentry>
<glossentry>
<glossterm><anchor id="annotation-glossterm-array"/>array</glossterm>
<glossdef>
<para>Parameter points to an array of items.</para>
</glossdef>
</glossentry>
</glossdiv>
<glossdiv><title>D</title>
<glossentry>
<glossterm><anchor id="annotation-glossterm-default"/>default</glossterm>
<glossdef>
<para>Default parameter value (for in case the <acronym>shadows</acronym>-to function has less parameters).</para>
</glossdef>
</glossentry>
</glossdiv>
<glossdiv><title>E</title>
<glossentry>
<glossterm><anchor id="annotation-glossterm-element-type"/>element-type</glossterm>
<glossdef>
<para>Generics and defining elements of containers and arrays.</para>
</glossdef>
</glossentry>
</glossdiv>
<glossdiv><title>T</title>
<glossentry>
<glossterm><anchor id="annotation-glossterm-transfer container"/>transfer container</glossterm>
<glossdef>
<para>Free data container after the code is done.</para>
</glossdef>
</glossentry>
<glossentry>
<glossterm><anchor id="annotation-glossterm-transfer full"/>transfer full</glossterm>
<glossdef>
<para>Free data after the code is done.</para>
</glossdef>
</glossentry>
<glossentry>
<glossterm><anchor id="annotation-glossterm-transfer none"/>transfer none</glossterm>
<glossdef>
<para>Don't free data after the code is done.</para>
</glossdef>
</glossentry>
</glossdiv>
</glossary>
|