Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/notes_8c_source.html
changeset 10 d4524d6a4472
parent 9 59758314f811
child 11 5072524fcc79
--- a/Symbian3/Examples/guid-6013a680-57f9-415b-8851-c4fa63356636/notes_8c_source.html	Fri Jun 11 15:24:34 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,892 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
-<title>TB9.2 Example Applications: examples/PIPS/antiword/src/notes.c Source File</title>
-<link href="tabs.css" rel="stylesheet" type="text/css"/>
-<link href="doxygen.css" rel="stylesheet" type="text/css"/>
-</head>
-<body>
-<!-- Generated by Doxygen 1.6.2 -->
-<h1>examples/PIPS/antiword/src/notes.c</h1><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
-<a name="l00002"></a>00002 <span class="comment"> * notes.c</span>
-<a name="l00003"></a>00003 <span class="comment"> * Copyright (C) 1998-2005 A.J. van Os; Released under GNU GPL</span>
-<a name="l00004"></a>00004 <span class="comment"> *</span>
-<a name="l00005"></a>00005 <span class="comment"> * Description:</span>
-<a name="l00006"></a>00006 <span class="comment"> * Functions to tell the difference between footnotes and endnotes</span>
-<a name="l00007"></a>00007 <span class="comment"> */</span>
-<a name="l00008"></a>00008 
-<a name="l00009"></a>00009 <span class="preprocessor">#include &quot;antiword.h&quot;</span>
-<a name="l00010"></a>00010 
-<a name="l00011"></a>00011 <span class="comment">/*</span>
-<a name="l00012"></a>00012 <span class="comment"> * Private structures to hide the way the information</span>
-<a name="l00013"></a>00013 <span class="comment"> * is stored from the rest of the program</span>
-<a name="l00014"></a>00014 <span class="comment"> */</span>
-<a name="l00015"></a>00015 <span class="keyword">typedef</span> <span class="keyword">struct </span>footnote_local_tag {
-<a name="l00016"></a>00016         footnote_block_type     tInfo;
-<a name="l00017"></a>00017         ULONG                   ulCharPosStart;
-<a name="l00018"></a>00018         ULONG                   ulCharPosNext;
-<a name="l00019"></a>00019         BOOL                    bUseful;
-<a name="l00020"></a>00020 } footnote_local_type;
-<a name="l00021"></a>00021 
-<a name="l00022"></a>00022 <span class="comment">/* Variables needed to write the Footnote and Endnote information */</span>
-<a name="l00023"></a>00023 <span class="keyword">static</span> ULONG    *aulFootnoteList = NULL;
-<a name="l00024"></a>00024 <span class="keyword">static</span> <span class="keywordtype">size_t</span>   tFootnoteListLength = 0;
-<a name="l00025"></a>00025 <span class="keyword">static</span> ULONG    *aulEndnoteList = NULL;
-<a name="l00026"></a>00026 <span class="keyword">static</span> <span class="keywordtype">size_t</span>   tEndnoteListLength = 0;
-<a name="l00027"></a>00027 <span class="comment">/* Variables needed to write the Footnote Text */</span>
-<a name="l00028"></a>00028 <span class="keyword">static</span> footnote_local_type      *pFootnoteText = NULL;
-<a name="l00029"></a>00029 <span class="keyword">static</span> <span class="keywordtype">size_t</span>                   tFootnoteTextLength = 0;
-<a name="l00030"></a>00030 
-<a name="l00031"></a>00031 
-<a name="l00032"></a>00032 <span class="comment">/*</span>
-<a name="l00033"></a>00033 <span class="comment"> * Destroy the lists with footnote and endnote information</span>
-<a name="l00034"></a>00034 <span class="comment"> */</span>
-<a name="l00035"></a>00035 <span class="keywordtype">void</span>
-<a name="l00036"></a>00036 vDestroyNotesInfoLists(<span class="keywordtype">void</span>)
-<a name="l00037"></a>00037 {
-<a name="l00038"></a>00038         footnote_local_type     *pRecord;
-<a name="l00039"></a>00039         <span class="keywordtype">size_t</span>                  tFootnote;
-<a name="l00040"></a>00040 
-<a name="l00041"></a>00041         TRACE_MSG(<span class="stringliteral">&quot;vDestroyNotesInfoLists&quot;</span>);
-<a name="l00042"></a>00042 
-<a name="l00043"></a>00043         <span class="comment">/* Free the lists and reset all control variables */</span>
-<a name="l00044"></a>00044         aulEndnoteList = xfree(aulEndnoteList);
-<a name="l00045"></a>00045         aulFootnoteList = xfree(aulFootnoteList);
-<a name="l00046"></a>00046         tEndnoteListLength = 0;
-<a name="l00047"></a>00047         tFootnoteListLength = 0;
-<a name="l00048"></a>00048         <span class="keywordflow">for</span> (tFootnote = 0; tFootnote &lt; tFootnoteTextLength; tFootnote++) {
-<a name="l00049"></a>00049                 pRecord = pFootnoteText + tFootnote;
-<a name="l00050"></a>00050                 pRecord-&gt;tInfo.szText = xfree(pRecord-&gt;tInfo.szText);
-<a name="l00051"></a>00051         }
-<a name="l00052"></a>00052         pFootnoteText = xfree(pFootnoteText);
-<a name="l00053"></a>00053         tFootnoteTextLength = 0;
-<a name="l00054"></a>00054 } <span class="comment">/* end of vDestroyNotesInfoLists */</span>
-<a name="l00055"></a>00055 
-<a name="l00056"></a>00056 <span class="comment">/*</span>
-<a name="l00057"></a>00057 <span class="comment"> * Build the list with footnote information for Word for DOS files</span>
-<a name="l00058"></a>00058 <span class="comment"> */</span>
-<a name="l00059"></a>00059 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00060"></a>00060 vGet0FootnotesInfoAndText(FILE *pFile, <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00061"></a>00061 {
-<a name="l00062"></a>00062         footnote_local_type     *pCurr;
-<a name="l00063"></a>00063         UCHAR   *aucBuffer;
-<a name="l00064"></a>00064         ULONG   ulFileOffset, ulBeginOfText, ulOffset, ulBeginFootnoteInfo;
-<a name="l00065"></a>00065         ULONG   ulCharPos, ulBeginNextBlock;
-<a name="l00066"></a>00066         <span class="keywordtype">size_t</span>  tFootnotes, tFootnoteInfoLen;
-<a name="l00067"></a>00067         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00068"></a>00068         UCHAR   aucTmp[2];
-<a name="l00069"></a>00069 
-<a name="l00070"></a>00070         TRACE_MSG(<span class="stringliteral">&quot;vGet0FootnotesInfoAndText&quot;</span>);
-<a name="l00071"></a>00071 
-<a name="l00072"></a>00072         fail(pFile == NULL || aucHeader == NULL);
-<a name="l00073"></a>00073 
-<a name="l00074"></a>00074         ulBeginOfText = 128;
-<a name="l00075"></a>00075         NO_DBG_HEX(ulBeginOfText);
-<a name="l00076"></a>00076         ulBeginFootnoteInfo =  128 * (ULONG)usGetWord(0x14, aucHeader);
-<a name="l00077"></a>00077         DBG_HEX(ulBeginFootnoteInfo);
-<a name="l00078"></a>00078         ulBeginNextBlock = 128 * (ULONG)usGetWord(0x16, aucHeader);
-<a name="l00079"></a>00079         DBG_HEX(ulBeginNextBlock);
-<a name="l00080"></a>00080 
-<a name="l00081"></a>00081         <span class="keywordflow">if</span> (ulBeginFootnoteInfo == ulBeginNextBlock) {
-<a name="l00082"></a>00082                 DBG_MSG(<span class="stringliteral">&quot;No Footnotes in this document&quot;</span>);
-<a name="l00083"></a>00083                 <span class="keywordflow">return</span>;
-<a name="l00084"></a>00084         }
-<a name="l00085"></a>00085 
-<a name="l00086"></a>00086         <span class="comment">/* Read the the number of footnotes + 1 */</span>
-<a name="l00087"></a>00087         <span class="keywordflow">if</span> (!bReadBytes(aucTmp, 2, ulBeginFootnoteInfo, pFile)) {
-<a name="l00088"></a>00088                 <span class="keywordflow">return</span>;
-<a name="l00089"></a>00089         }
-<a name="l00090"></a>00090         tFootnotes = (size_t)usGetWord(0, aucTmp);
-<a name="l00091"></a>00091         <span class="keywordflow">if</span> (tFootnotes &lt; 2) {
-<a name="l00092"></a>00092                 DBG_MSG(<span class="stringliteral">&quot;No Footnotes in this document (2)&quot;</span>);
-<a name="l00093"></a>00093         }
-<a name="l00094"></a>00094         DBG_DEC(tFootnotes);
-<a name="l00095"></a>00095         tFootnoteInfoLen =  8 * tFootnotes;
-<a name="l00096"></a>00096 
-<a name="l00097"></a>00097         aucBuffer = xmalloc(tFootnoteInfoLen);
-<a name="l00098"></a>00098         <span class="keywordflow">if</span> (!bReadBytes(aucBuffer,
-<a name="l00099"></a>00099                         tFootnoteInfoLen, ulBeginFootnoteInfo + 4, pFile)) {
-<a name="l00100"></a>00100                 aucBuffer = xfree(aucBuffer);
-<a name="l00101"></a>00101                 <span class="keywordflow">return</span>;
-<a name="l00102"></a>00102         }
-<a name="l00103"></a>00103         DBG_PRINT_BLOCK(aucBuffer, tFootnoteInfoLen);
-<a name="l00104"></a>00104 
-<a name="l00105"></a>00105         <span class="comment">/* Get footnote information */</span>
-<a name="l00106"></a>00106         fail(tFootnoteListLength != 0);
-<a name="l00107"></a>00107         tFootnoteListLength = tFootnotes - 1;
-<a name="l00108"></a>00108         fail(tFootnoteListLength == 0);
-<a name="l00109"></a>00109 
-<a name="l00110"></a>00110         fail(aulFootnoteList != NULL);
-<a name="l00111"></a>00111         aulFootnoteList = xcalloc(tFootnoteListLength, <span class="keyword">sizeof</span>(ULONG));
-<a name="l00112"></a>00112 
-<a name="l00113"></a>00113         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tFootnoteListLength; tIndex++) {
-<a name="l00114"></a>00114                 ulOffset = ulGetLong(tIndex * 8, aucBuffer);
-<a name="l00115"></a>00115                 DBG_HEX(ulOffset);
-<a name="l00116"></a>00116                 ulFileOffset = ulCharPos2FileOffset(ulBeginOfText + ulOffset);
-<a name="l00117"></a>00117                 DBG_HEX(ulFileOffset);
-<a name="l00118"></a>00118                 aulFootnoteList[tIndex] = ulFileOffset;
-<a name="l00119"></a>00119         }
-<a name="l00120"></a>00120 
-<a name="l00121"></a>00121         <span class="comment">/* Get footnote text */</span>
-<a name="l00122"></a>00122         fail(tFootnoteTextLength != 0);
-<a name="l00123"></a>00123         tFootnoteTextLength = tFootnotes - 1;
-<a name="l00124"></a>00124         fail(tFootnoteTextLength == 0);
-<a name="l00125"></a>00125 
-<a name="l00126"></a>00126         fail(pFootnoteText != NULL);
-<a name="l00127"></a>00127         pFootnoteText = xcalloc(tFootnoteTextLength,
-<a name="l00128"></a>00128                                 <span class="keyword">sizeof</span>(footnote_local_type));
-<a name="l00129"></a>00129 
-<a name="l00130"></a>00130         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tFootnoteTextLength; tIndex++) {
-<a name="l00131"></a>00131                 pCurr = pFootnoteText + tIndex;
-<a name="l00132"></a>00132                 pCurr-&gt;tInfo.szText = NULL;
-<a name="l00133"></a>00133                 ulOffset = ulGetLong(tIndex * 8 + 4, aucBuffer);
-<a name="l00134"></a>00134                 DBG_HEX(ulOffset);
-<a name="l00135"></a>00135                 ulCharPos = ulBeginOfText + ulOffset;
-<a name="l00136"></a>00136                 DBG_HEX(ulCharPos);
-<a name="l00137"></a>00137                 DBG_HEX(ulCharPos2FileOffset(ulCharPos));
-<a name="l00138"></a>00138                 pCurr-&gt;ulCharPosStart = ulCharPos;
-<a name="l00139"></a>00139                 ulOffset = ulGetLong((tIndex + 1) * 8 + 4, aucBuffer);
-<a name="l00140"></a>00140                 DBG_HEX(ulOffset);
-<a name="l00141"></a>00141                 ulCharPos = ulBeginOfText + ulOffset;
-<a name="l00142"></a>00142                 DBG_HEX(ulCharPos);
-<a name="l00143"></a>00143                 DBG_HEX(ulCharPos2FileOffset(ulCharPos));
-<a name="l00144"></a>00144                 pCurr-&gt;ulCharPosNext = ulCharPos;
-<a name="l00145"></a>00145                 pCurr-&gt;bUseful = pCurr-&gt;ulCharPosStart != pCurr-&gt;ulCharPosNext;
-<a name="l00146"></a>00146         }
-<a name="l00147"></a>00147         aucBuffer = xfree(aucBuffer);
-<a name="l00148"></a>00148 } <span class="comment">/* end of vGet0FootnotesInfoAndText */</span>
-<a name="l00149"></a>00149 
-<a name="l00150"></a>00150 <span class="comment">/*</span>
-<a name="l00151"></a>00151 <span class="comment"> * Build the lists note information for Word for DOS files</span>
-<a name="l00152"></a>00152 <span class="comment"> */</span>
-<a name="l00153"></a>00153 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00154"></a>00154 vGet0NotesInfo(FILE *pFile, <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00155"></a>00155 {
-<a name="l00156"></a>00156         TRACE_MSG(<span class="stringliteral">&quot;vGet0NotesInfo&quot;</span>);
-<a name="l00157"></a>00157 
-<a name="l00158"></a>00158         vGet0FootnotesInfoAndText(pFile, aucHeader);
-<a name="l00159"></a>00159         <span class="comment">/* There are no endnotes in a Word for DOS file */</span>
-<a name="l00160"></a>00160 } <span class="comment">/* end of vGet0NotesInfo */</span>
-<a name="l00161"></a>00161 
-<a name="l00162"></a>00162 <span class="comment">/*</span>
-<a name="l00163"></a>00163 <span class="comment"> * Build the list with footnote information for WinWord 1/2 files</span>
-<a name="l00164"></a>00164 <span class="comment"> */</span>
-<a name="l00165"></a>00165 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00166"></a>00166 vGet2FootnotesInfo(FILE *pFile, <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00167"></a>00167 {
-<a name="l00168"></a>00168         UCHAR   *aucBuffer;
-<a name="l00169"></a>00169         ULONG   ulFileOffset, ulBeginOfText, ulOffset, ulBeginFootnoteInfo;
-<a name="l00170"></a>00170         <span class="keywordtype">size_t</span>  tFootnoteInfoLen;
-<a name="l00171"></a>00171         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00172"></a>00172 
-<a name="l00173"></a>00173         TRACE_MSG(<span class="stringliteral">&quot;vGet2FootnotesInfo&quot;</span>);
-<a name="l00174"></a>00174 
-<a name="l00175"></a>00175         fail(pFile == NULL || aucHeader == NULL);
-<a name="l00176"></a>00176 
-<a name="l00177"></a>00177         ulBeginOfText = ulGetLong(0x18, aucHeader); <span class="comment">/* fcMin */</span>
-<a name="l00178"></a>00178         NO_DBG_HEX(ulBeginOfText);
-<a name="l00179"></a>00179         ulBeginFootnoteInfo = ulGetLong(0x64, aucHeader); <span class="comment">/* fcPlcffndRef */</span>
-<a name="l00180"></a>00180         NO_DBG_HEX(ulBeginFootnoteInfo);
-<a name="l00181"></a>00181         tFootnoteInfoLen = (size_t)usGetWord(0x68, aucHeader); <span class="comment">/* cbPlcffndRef */</span>
-<a name="l00182"></a>00182         NO_DBG_DEC(tFootnoteInfoLen);
-<a name="l00183"></a>00183 
-<a name="l00184"></a>00184         <span class="keywordflow">if</span> (tFootnoteInfoLen &lt; 10) {
-<a name="l00185"></a>00185                 DBG_MSG(<span class="stringliteral">&quot;No Footnotes in this document&quot;</span>);
-<a name="l00186"></a>00186                 <span class="keywordflow">return</span>;
-<a name="l00187"></a>00187         }
-<a name="l00188"></a>00188 
-<a name="l00189"></a>00189         aucBuffer = xmalloc(tFootnoteInfoLen);
-<a name="l00190"></a>00190         <span class="keywordflow">if</span> (!bReadBytes(aucBuffer,
-<a name="l00191"></a>00191                         tFootnoteInfoLen, ulBeginFootnoteInfo, pFile)) {
-<a name="l00192"></a>00192                 aucBuffer = xfree(aucBuffer);
-<a name="l00193"></a>00193                 <span class="keywordflow">return</span>;
-<a name="l00194"></a>00194         }
-<a name="l00195"></a>00195         NO_DBG_PRINT_BLOCK(aucBuffer, tFootnoteInfoLen);
-<a name="l00196"></a>00196 
-<a name="l00197"></a>00197         fail(tFootnoteListLength != 0);
-<a name="l00198"></a>00198         tFootnoteListLength = (tFootnoteInfoLen - 4) / 6;
-<a name="l00199"></a>00199         fail(tFootnoteListLength == 0);
-<a name="l00200"></a>00200 
-<a name="l00201"></a>00201         fail(aulFootnoteList != NULL);
-<a name="l00202"></a>00202         aulFootnoteList = xcalloc(tFootnoteListLength, <span class="keyword">sizeof</span>(ULONG));
-<a name="l00203"></a>00203 
-<a name="l00204"></a>00204         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tFootnoteListLength; tIndex++) {
-<a name="l00205"></a>00205                 ulOffset = ulGetLong(tIndex * 4, aucBuffer);
-<a name="l00206"></a>00206                 NO_DBG_HEX(ulOffset);
-<a name="l00207"></a>00207                 ulFileOffset = ulCharPos2FileOffset(ulBeginOfText + ulOffset);
-<a name="l00208"></a>00208                 NO_DBG_HEX(ulFileOffset);
-<a name="l00209"></a>00209                 aulFootnoteList[tIndex] = ulFileOffset;
-<a name="l00210"></a>00210         }
-<a name="l00211"></a>00211         aucBuffer = xfree(aucBuffer);
-<a name="l00212"></a>00212 } <span class="comment">/* end of vGet2FootnotesInfo */</span>
-<a name="l00213"></a>00213 
-<a name="l00214"></a>00214 <span class="comment">/*</span>
-<a name="l00215"></a>00215 <span class="comment"> * Build the list with footnote text information for WinWord 1/2 files</span>
-<a name="l00216"></a>00216 <span class="comment"> */</span>
-<a name="l00217"></a>00217 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00218"></a>00218 vGet2FootnotesText(FILE *pFile, <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00219"></a>00219 {
-<a name="l00220"></a>00220         footnote_local_type     *pCurr;
-<a name="l00221"></a>00221         UCHAR   *aucBuffer;
-<a name="l00222"></a>00222         ULONG   ulCharPos, ulBeginOfFootnotes, ulOffset, ulBeginFootnoteText;
-<a name="l00223"></a>00223         <span class="keywordtype">size_t</span>  tFootnoteTextLen;
-<a name="l00224"></a>00224         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00225"></a>00225 
-<a name="l00226"></a>00226         TRACE_MSG(<span class="stringliteral">&quot;vGet2FootnotesText&quot;</span>);
-<a name="l00227"></a>00227 
-<a name="l00228"></a>00228         fail(pFile == NULL || aucHeader == NULL);
-<a name="l00229"></a>00229 
-<a name="l00230"></a>00230         ulBeginOfFootnotes = ulGetLong(0x18, aucHeader); <span class="comment">/* fcMin */</span>
-<a name="l00231"></a>00231         ulBeginOfFootnotes += ulGetLong(0x34, aucHeader); <span class="comment">/* ccpText */</span>
-<a name="l00232"></a>00232         NO_DBG_HEX(ulBeginOfFootnotes);
-<a name="l00233"></a>00233 
-<a name="l00234"></a>00234         ulBeginFootnoteText = ulGetLong(0x6a, aucHeader); <span class="comment">/* fcPlcffndTxt */</span>
-<a name="l00235"></a>00235         NO_DBG_HEX(ulBeginFootnoteText);
-<a name="l00236"></a>00236         tFootnoteTextLen =
-<a name="l00237"></a>00237                 (size_t)usGetWord(0x6e, aucHeader); <span class="comment">/* cbPlcffndTxt */</span>
-<a name="l00238"></a>00238         NO_DBG_DEC(tFootnoteTextLen);
-<a name="l00239"></a>00239 
-<a name="l00240"></a>00240         <span class="keywordflow">if</span> (tFootnoteTextLen &lt; 12) {
-<a name="l00241"></a>00241                 DBG_MSG(<span class="stringliteral">&quot;No Footnote text in this document&quot;</span>);
-<a name="l00242"></a>00242                 <span class="keywordflow">return</span>;
-<a name="l00243"></a>00243         }
-<a name="l00244"></a>00244 
-<a name="l00245"></a>00245         aucBuffer = xmalloc(tFootnoteTextLen);
-<a name="l00246"></a>00246         <span class="keywordflow">if</span> (!bReadBytes(aucBuffer,
-<a name="l00247"></a>00247                         tFootnoteTextLen, ulBeginFootnoteText, pFile)) {
-<a name="l00248"></a>00248                 aucBuffer = xfree(aucBuffer);
-<a name="l00249"></a>00249                 <span class="keywordflow">return</span>;
-<a name="l00250"></a>00250         }
-<a name="l00251"></a>00251         NO_DBG_PRINT_BLOCK(aucBuffer, tFootnoteTextLen);
-<a name="l00252"></a>00252 
-<a name="l00253"></a>00253         fail(tFootnoteTextLength != 0);
-<a name="l00254"></a>00254         tFootnoteTextLength = tFootnoteTextLen / 4 - 2;
-<a name="l00255"></a>00255         fail(tFootnoteTextLength == 0);
-<a name="l00256"></a>00256 
-<a name="l00257"></a>00257         fail(pFootnoteText != NULL);
-<a name="l00258"></a>00258         pFootnoteText = xcalloc(tFootnoteTextLength,
-<a name="l00259"></a>00259                                 <span class="keyword">sizeof</span>(footnote_local_type));
-<a name="l00260"></a>00260 
-<a name="l00261"></a>00261         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tFootnoteTextLength; tIndex++) {
-<a name="l00262"></a>00262                 pCurr = pFootnoteText + tIndex;
-<a name="l00263"></a>00263                 pCurr-&gt;tInfo.szText = NULL;
-<a name="l00264"></a>00264                 ulOffset = ulGetLong(tIndex * 4, aucBuffer);
-<a name="l00265"></a>00265                 NO_DBG_HEX(ulOffset);
-<a name="l00266"></a>00266                 ulCharPos = ulBeginOfFootnotes + ulOffset;
-<a name="l00267"></a>00267                 NO_DBG_HEX(ulCharPos);
-<a name="l00268"></a>00268                 NO_DBG_HEX(ulCharPos2FileOffset(ulCharPos));
-<a name="l00269"></a>00269                 pCurr-&gt;ulCharPosStart = ulCharPos;
-<a name="l00270"></a>00270                 ulOffset = ulGetLong(tIndex * 4 + 4, aucBuffer);
-<a name="l00271"></a>00271                 NO_DBG_HEX(ulOffset);
-<a name="l00272"></a>00272                 ulCharPos = ulBeginOfFootnotes + ulOffset;
-<a name="l00273"></a>00273                 NO_DBG_HEX(ulCharPos);
-<a name="l00274"></a>00274                 NO_DBG_HEX(ulCharPos2FileOffset(ulCharPos));
-<a name="l00275"></a>00275                 pCurr-&gt;ulCharPosNext = ulCharPos;
-<a name="l00276"></a>00276                 pCurr-&gt;bUseful = pCurr-&gt;ulCharPosStart != pCurr-&gt;ulCharPosNext;
-<a name="l00277"></a>00277         }
-<a name="l00278"></a>00278         aucBuffer = xfree(aucBuffer);
-<a name="l00279"></a>00279 } <span class="comment">/* end of vGet2FootnotesText */</span>
-<a name="l00280"></a>00280 
-<a name="l00281"></a>00281 <span class="comment">/*</span>
-<a name="l00282"></a>00282 <span class="comment"> * Build the lists note information for WinWord 1/2 files</span>
-<a name="l00283"></a>00283 <span class="comment"> */</span>
-<a name="l00284"></a>00284 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00285"></a>00285 vGet2NotesInfo(FILE *pFile, <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00286"></a>00286 {
-<a name="l00287"></a>00287         TRACE_MSG(<span class="stringliteral">&quot;vGet2NotesInfo&quot;</span>);
-<a name="l00288"></a>00288 
-<a name="l00289"></a>00289         vGet2FootnotesInfo(pFile, aucHeader);
-<a name="l00290"></a>00290         vGet2FootnotesText(pFile, aucHeader);
-<a name="l00291"></a>00291         <span class="comment">/* There are no endnotes in a WinWord 1/2 file */</span>
-<a name="l00292"></a>00292 } <span class="comment">/* end of vGet2NotesInfo */</span>
-<a name="l00293"></a>00293 
-<a name="l00294"></a>00294 <span class="comment">/*</span>
-<a name="l00295"></a>00295 <span class="comment"> * Build the list with footnote information for Word 6/7 files</span>
-<a name="l00296"></a>00296 <span class="comment"> */</span>
-<a name="l00297"></a>00297 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00298"></a>00298 vGet6FootnotesInfo(FILE *pFile, ULONG ulStartBlock,
-<a name="l00299"></a>00299         <span class="keyword">const</span> ULONG *aulBBD, <span class="keywordtype">size_t</span> tBBDLen,
-<a name="l00300"></a>00300         <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00301"></a>00301 {
-<a name="l00302"></a>00302         UCHAR   *aucBuffer;
-<a name="l00303"></a>00303         ULONG   ulFileOffset, ulBeginOfText, ulOffset, ulBeginFootnoteInfo;
-<a name="l00304"></a>00304         <span class="keywordtype">size_t</span>  tFootnoteInfoLen;
-<a name="l00305"></a>00305         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00306"></a>00306 
-<a name="l00307"></a>00307         TRACE_MSG(<span class="stringliteral">&quot;vGet6FootnotesInfo&quot;</span>);
-<a name="l00308"></a>00308 
-<a name="l00309"></a>00309         fail(pFile == NULL || aucHeader == NULL);
-<a name="l00310"></a>00310         fail(ulStartBlock &gt; MAX_BLOCKNUMBER &amp;&amp; ulStartBlock != END_OF_CHAIN);
-<a name="l00311"></a>00311         fail(aulBBD == NULL);
-<a name="l00312"></a>00312 
-<a name="l00313"></a>00313         ulBeginOfText = ulGetLong(0x18, aucHeader); <span class="comment">/* fcMin */</span>
-<a name="l00314"></a>00314         NO_DBG_HEX(ulBeginOfText);
-<a name="l00315"></a>00315         ulBeginFootnoteInfo = ulGetLong(0x68, aucHeader); <span class="comment">/* fcPlcffndRef */</span>
-<a name="l00316"></a>00316         NO_DBG_HEX(ulBeginFootnoteInfo);
-<a name="l00317"></a>00317         tFootnoteInfoLen =
-<a name="l00318"></a>00318                 (size_t)ulGetLong(0x6c, aucHeader); <span class="comment">/* lcbPlcffndRef */</span>
-<a name="l00319"></a>00319         NO_DBG_DEC(tFootnoteInfoLen);
-<a name="l00320"></a>00320 
-<a name="l00321"></a>00321         <span class="keywordflow">if</span> (tFootnoteInfoLen &lt; 10) {
-<a name="l00322"></a>00322                 DBG_MSG(<span class="stringliteral">&quot;No Footnotes in this document&quot;</span>);
-<a name="l00323"></a>00323                 <span class="keywordflow">return</span>;
-<a name="l00324"></a>00324         }
-<a name="l00325"></a>00325 
-<a name="l00326"></a>00326         aucBuffer = xmalloc(tFootnoteInfoLen);
-<a name="l00327"></a>00327         <span class="keywordflow">if</span> (!bReadBuffer(pFile, ulStartBlock,
-<a name="l00328"></a>00328                         aulBBD, tBBDLen, BIG_BLOCK_SIZE,
-<a name="l00329"></a>00329                         aucBuffer, ulBeginFootnoteInfo, tFootnoteInfoLen)) {
-<a name="l00330"></a>00330                 aucBuffer = xfree(aucBuffer);
-<a name="l00331"></a>00331                 <span class="keywordflow">return</span>;
-<a name="l00332"></a>00332         }
-<a name="l00333"></a>00333         NO_DBG_PRINT_BLOCK(aucBuffer, tFootnoteInfoLen);
-<a name="l00334"></a>00334 
-<a name="l00335"></a>00335         fail(tFootnoteListLength != 0);
-<a name="l00336"></a>00336         tFootnoteListLength = (tFootnoteInfoLen - 4) / 6;
-<a name="l00337"></a>00337         fail(tFootnoteListLength == 0);
-<a name="l00338"></a>00338 
-<a name="l00339"></a>00339         fail(aulFootnoteList != NULL);
-<a name="l00340"></a>00340         aulFootnoteList = xcalloc(tFootnoteListLength, <span class="keyword">sizeof</span>(ULONG));
-<a name="l00341"></a>00341 
-<a name="l00342"></a>00342         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tFootnoteListLength; tIndex++) {
-<a name="l00343"></a>00343                 ulOffset = ulGetLong(tIndex * 4, aucBuffer);
-<a name="l00344"></a>00344                 NO_DBG_HEX(ulOffset);
-<a name="l00345"></a>00345                 ulFileOffset = ulCharPos2FileOffset(ulBeginOfText + ulOffset);
-<a name="l00346"></a>00346                 NO_DBG_HEX(ulFileOffset);
-<a name="l00347"></a>00347                 aulFootnoteList[tIndex] = ulFileOffset;
-<a name="l00348"></a>00348         }
-<a name="l00349"></a>00349         aucBuffer = xfree(aucBuffer);
-<a name="l00350"></a>00350 } <span class="comment">/* end of vGet6FootnotesInfo */</span>
-<a name="l00351"></a>00351 
-<a name="l00352"></a>00352 <span class="comment">/*</span>
-<a name="l00353"></a>00353 <span class="comment"> * Build the list with footnote text information for Word 6/7 files</span>
-<a name="l00354"></a>00354 <span class="comment"> */</span>
-<a name="l00355"></a>00355 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00356"></a>00356 vGet6FootnotesText(FILE *pFile, ULONG ulStartBlock,
-<a name="l00357"></a>00357         <span class="keyword">const</span> ULONG *aulBBD, <span class="keywordtype">size_t</span> tBBDLen,
-<a name="l00358"></a>00358         <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00359"></a>00359 {
-<a name="l00360"></a>00360         footnote_local_type     *pCurr;
-<a name="l00361"></a>00361         UCHAR   *aucBuffer;
-<a name="l00362"></a>00362         ULONG   ulCharPos, ulBeginOfFootnotes, ulOffset, ulBeginFootnoteText;
-<a name="l00363"></a>00363         <span class="keywordtype">size_t</span>  tFootnoteTextLen;
-<a name="l00364"></a>00364         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00365"></a>00365 
-<a name="l00366"></a>00366         TRACE_MSG(<span class="stringliteral">&quot;vGet6FootnotesText&quot;</span>);
-<a name="l00367"></a>00367 
-<a name="l00368"></a>00368         fail(pFile == NULL || aucHeader == NULL);
-<a name="l00369"></a>00369         fail(ulStartBlock &gt; MAX_BLOCKNUMBER &amp;&amp; ulStartBlock != END_OF_CHAIN);
-<a name="l00370"></a>00370         fail(aulBBD == NULL);
-<a name="l00371"></a>00371 
-<a name="l00372"></a>00372         ulBeginOfFootnotes = ulGetLong(0x18, aucHeader); <span class="comment">/* fcMin */</span>
-<a name="l00373"></a>00373         ulBeginOfFootnotes += ulGetLong(0x34, aucHeader); <span class="comment">/* ccpText */</span>
-<a name="l00374"></a>00374         NO_DBG_HEX(ulBeginOfFootnotes);
-<a name="l00375"></a>00375 
-<a name="l00376"></a>00376         ulBeginFootnoteText = ulGetLong(0x70, aucHeader); <span class="comment">/* fcPlcffndTxt */</span>
-<a name="l00377"></a>00377         NO_DBG_HEX(ulBeginFootnoteText);
-<a name="l00378"></a>00378         tFootnoteTextLen =
-<a name="l00379"></a>00379                 (size_t)ulGetLong(0x74, aucHeader); <span class="comment">/* lcbPlcffndTxt */</span>
-<a name="l00380"></a>00380         NO_DBG_DEC(tFootnoteTextLen);
-<a name="l00381"></a>00381 
-<a name="l00382"></a>00382         <span class="keywordflow">if</span> (tFootnoteTextLen &lt; 12) {
-<a name="l00383"></a>00383                 DBG_MSG(<span class="stringliteral">&quot;No Footnote text in this document&quot;</span>);
-<a name="l00384"></a>00384                 <span class="keywordflow">return</span>;
-<a name="l00385"></a>00385         }
-<a name="l00386"></a>00386 
-<a name="l00387"></a>00387         aucBuffer = xmalloc(tFootnoteTextLen);
-<a name="l00388"></a>00388         <span class="keywordflow">if</span> (!bReadBuffer(pFile, ulStartBlock,
-<a name="l00389"></a>00389                         aulBBD, tBBDLen, BIG_BLOCK_SIZE,
-<a name="l00390"></a>00390                         aucBuffer, ulBeginFootnoteText, tFootnoteTextLen)) {
-<a name="l00391"></a>00391                 aucBuffer = xfree(aucBuffer);
-<a name="l00392"></a>00392                 <span class="keywordflow">return</span>;
-<a name="l00393"></a>00393         }
-<a name="l00394"></a>00394         NO_DBG_PRINT_BLOCK(aucBuffer, tFootnoteTextLen);
-<a name="l00395"></a>00395 
-<a name="l00396"></a>00396         fail(tFootnoteTextLength != 0);
-<a name="l00397"></a>00397         tFootnoteTextLength = tFootnoteTextLen / 4 - 2;
-<a name="l00398"></a>00398         fail(tFootnoteTextLength == 0);
-<a name="l00399"></a>00399 
-<a name="l00400"></a>00400         fail(pFootnoteText != NULL);
-<a name="l00401"></a>00401         pFootnoteText = xcalloc(tFootnoteTextLength,
-<a name="l00402"></a>00402                                 <span class="keyword">sizeof</span>(footnote_local_type));
-<a name="l00403"></a>00403 
-<a name="l00404"></a>00404         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tFootnoteTextLength; tIndex++) {
-<a name="l00405"></a>00405                 pCurr = pFootnoteText + tIndex;
-<a name="l00406"></a>00406                 pCurr-&gt;tInfo.szText = NULL;
-<a name="l00407"></a>00407                 ulOffset = ulGetLong(tIndex * 4, aucBuffer);
-<a name="l00408"></a>00408                 NO_DBG_HEX(ulOffset);
-<a name="l00409"></a>00409                 ulCharPos = ulBeginOfFootnotes + ulOffset;
-<a name="l00410"></a>00410                 NO_DBG_HEX(ulCharPos);
-<a name="l00411"></a>00411                 NO_DBG_HEX(ulCharPos2FileOffset(ulCharPos));
-<a name="l00412"></a>00412                 pCurr-&gt;ulCharPosStart = ulCharPos;
-<a name="l00413"></a>00413                 ulOffset = ulGetLong(tIndex * 4 + 4, aucBuffer);
-<a name="l00414"></a>00414                 NO_DBG_HEX(ulOffset);
-<a name="l00415"></a>00415                 ulCharPos = ulBeginOfFootnotes + ulOffset;
-<a name="l00416"></a>00416                 NO_DBG_HEX(ulCharPos);
-<a name="l00417"></a>00417                 NO_DBG_HEX(ulCharPos2FileOffset(ulCharPos));
-<a name="l00418"></a>00418                 pCurr-&gt;ulCharPosNext = ulCharPos;
-<a name="l00419"></a>00419                 pCurr-&gt;bUseful = pCurr-&gt;ulCharPosStart != pCurr-&gt;ulCharPosNext;
-<a name="l00420"></a>00420         }
-<a name="l00421"></a>00421         aucBuffer = xfree(aucBuffer);
-<a name="l00422"></a>00422 } <span class="comment">/* end of vGet6FootnotesText */</span>
-<a name="l00423"></a>00423 
-<a name="l00424"></a>00424 <span class="comment">/*</span>
-<a name="l00425"></a>00425 <span class="comment"> * Build the list with endnote information for Word 6/7 files</span>
-<a name="l00426"></a>00426 <span class="comment"> */</span>
-<a name="l00427"></a>00427 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00428"></a>00428 vGet6EndnotesInfo(FILE *pFile, ULONG ulStartBlock,
-<a name="l00429"></a>00429         <span class="keyword">const</span> ULONG *aulBBD, <span class="keywordtype">size_t</span> tBBDLen,
-<a name="l00430"></a>00430         <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00431"></a>00431 {
-<a name="l00432"></a>00432         UCHAR   *aucBuffer;
-<a name="l00433"></a>00433         ULONG   ulFileOffset, ulBeginOfText, ulOffset, ulBeginEndnoteInfo;
-<a name="l00434"></a>00434         <span class="keywordtype">size_t</span>  tEndnoteInfoLen;
-<a name="l00435"></a>00435         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00436"></a>00436 
-<a name="l00437"></a>00437         TRACE_MSG(<span class="stringliteral">&quot;vGet6EndnotesInfo&quot;</span>);
-<a name="l00438"></a>00438 
-<a name="l00439"></a>00439         fail(pFile == NULL || aucHeader == NULL);
-<a name="l00440"></a>00440         fail(ulStartBlock &gt; MAX_BLOCKNUMBER &amp;&amp; ulStartBlock != END_OF_CHAIN);
-<a name="l00441"></a>00441         fail(aulBBD == NULL);
-<a name="l00442"></a>00442 
-<a name="l00443"></a>00443         ulBeginOfText = ulGetLong(0x18, aucHeader); <span class="comment">/* fcMin */</span>
-<a name="l00444"></a>00444         NO_DBG_HEX(ulBeginOfText);
-<a name="l00445"></a>00445         ulBeginEndnoteInfo = ulGetLong(0x1d2, aucHeader); <span class="comment">/* fcPlcfendRef */</span>
-<a name="l00446"></a>00446         NO_DBG_HEX(ulBeginEndnoteInfo);
-<a name="l00447"></a>00447         tEndnoteInfoLen =
-<a name="l00448"></a>00448                 (size_t)ulGetLong(0x1d6, aucHeader); <span class="comment">/* lcbPlcfendRef */</span>
-<a name="l00449"></a>00449         NO_DBG_DEC(tEndnoteInfoLen);
-<a name="l00450"></a>00450 
-<a name="l00451"></a>00451         <span class="keywordflow">if</span> (tEndnoteInfoLen &lt; 10) {
-<a name="l00452"></a>00452                 DBG_MSG(<span class="stringliteral">&quot;No Endnotes in this document&quot;</span>);
-<a name="l00453"></a>00453                 <span class="keywordflow">return</span>;
-<a name="l00454"></a>00454         }
-<a name="l00455"></a>00455 
-<a name="l00456"></a>00456         aucBuffer = xmalloc(tEndnoteInfoLen);
-<a name="l00457"></a>00457         <span class="keywordflow">if</span> (!bReadBuffer(pFile, ulStartBlock,
-<a name="l00458"></a>00458                         aulBBD, tBBDLen, BIG_BLOCK_SIZE,
-<a name="l00459"></a>00459                         aucBuffer, ulBeginEndnoteInfo, tEndnoteInfoLen)) {
-<a name="l00460"></a>00460                 aucBuffer = xfree(aucBuffer);
-<a name="l00461"></a>00461                 <span class="keywordflow">return</span>;
-<a name="l00462"></a>00462         }
-<a name="l00463"></a>00463         NO_DBG_PRINT_BLOCK(aucBuffer, tEndnoteInfoLen);
-<a name="l00464"></a>00464 
-<a name="l00465"></a>00465         fail(tEndnoteListLength != 0);
-<a name="l00466"></a>00466         tEndnoteListLength = (tEndnoteInfoLen - 4) / 6;
-<a name="l00467"></a>00467         fail(tEndnoteListLength == 0);
-<a name="l00468"></a>00468 
-<a name="l00469"></a>00469         fail(aulEndnoteList != NULL);
-<a name="l00470"></a>00470         aulEndnoteList = xcalloc(tEndnoteListLength, <span class="keyword">sizeof</span>(ULONG));
-<a name="l00471"></a>00471 
-<a name="l00472"></a>00472         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tEndnoteListLength; tIndex++) {
-<a name="l00473"></a>00473                 ulOffset = ulGetLong(tIndex * 4, aucBuffer);
-<a name="l00474"></a>00474                 NO_DBG_HEX(ulOffset);
-<a name="l00475"></a>00475                 ulFileOffset = ulCharPos2FileOffset(ulBeginOfText + ulOffset);
-<a name="l00476"></a>00476                 NO_DBG_HEX(ulFileOffset);
-<a name="l00477"></a>00477                 aulEndnoteList[tIndex] = ulFileOffset;
-<a name="l00478"></a>00478         }
-<a name="l00479"></a>00479         aucBuffer = xfree(aucBuffer);
-<a name="l00480"></a>00480 } <span class="comment">/* end of vGet6EndnotesInfo */</span>
-<a name="l00481"></a>00481 
-<a name="l00482"></a>00482 <span class="comment">/*</span>
-<a name="l00483"></a>00483 <span class="comment"> * Build the lists note information for Word 6/7 files</span>
-<a name="l00484"></a>00484 <span class="comment"> */</span>
-<a name="l00485"></a>00485 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00486"></a>00486 vGet6NotesInfo(FILE *pFile, ULONG ulStartBlock,
-<a name="l00487"></a>00487         <span class="keyword">const</span> ULONG *aulBBD, <span class="keywordtype">size_t</span> tBBDLen,
-<a name="l00488"></a>00488         <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00489"></a>00489 {
-<a name="l00490"></a>00490         TRACE_MSG(<span class="stringliteral">&quot;vGet6NotesInfo&quot;</span>);
-<a name="l00491"></a>00491 
-<a name="l00492"></a>00492         vGet6FootnotesInfo(pFile, ulStartBlock,
-<a name="l00493"></a>00493                         aulBBD, tBBDLen, aucHeader);
-<a name="l00494"></a>00494         vGet6FootnotesText(pFile, ulStartBlock,
-<a name="l00495"></a>00495                         aulBBD, tBBDLen, aucHeader);
-<a name="l00496"></a>00496         vGet6EndnotesInfo(pFile, ulStartBlock,
-<a name="l00497"></a>00497                         aulBBD, tBBDLen, aucHeader);
-<a name="l00498"></a>00498 } <span class="comment">/* end of vGet6NotesInfo */</span>
-<a name="l00499"></a>00499 
-<a name="l00500"></a>00500 <span class="comment">/*</span>
-<a name="l00501"></a>00501 <span class="comment"> * Build the list with footnote information for Word 8/9/10 files</span>
-<a name="l00502"></a>00502 <span class="comment"> */</span>
-<a name="l00503"></a>00503 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00504"></a>00504 vGet8FootnotesInfo(FILE *pFile, <span class="keyword">const</span> pps_info_type *pPPS,
-<a name="l00505"></a>00505         <span class="keyword">const</span> ULONG *aulBBD, <span class="keywordtype">size_t</span> tBBDLen,
-<a name="l00506"></a>00506         <span class="keyword">const</span> ULONG *aulSBD, <span class="keywordtype">size_t</span> tSBDLen,
-<a name="l00507"></a>00507         <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00508"></a>00508 {
-<a name="l00509"></a>00509         <span class="keyword">const</span> ULONG     *aulBlockDepot;
-<a name="l00510"></a>00510         UCHAR   *aucBuffer;
-<a name="l00511"></a>00511         ULONG   ulFileOffset, ulBeginOfText, ulOffset, ulBeginFootnoteInfo;
-<a name="l00512"></a>00512         <span class="keywordtype">size_t</span>  tFootnoteInfoLen, tBlockDepotLen, tBlockSize;
-<a name="l00513"></a>00513         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00514"></a>00514 
-<a name="l00515"></a>00515         TRACE_MSG(<span class="stringliteral">&quot;vGet8FootnotesInfo&quot;</span>);
-<a name="l00516"></a>00516 
-<a name="l00517"></a>00517         ulBeginOfText = ulGetLong(0x18, aucHeader); <span class="comment">/* fcMin */</span>
-<a name="l00518"></a>00518         NO_DBG_HEX(ulBeginOfText);
-<a name="l00519"></a>00519         ulBeginFootnoteInfo = ulGetLong(0xaa, aucHeader); <span class="comment">/* fcPlcffndRef */</span>
-<a name="l00520"></a>00520         NO_DBG_HEX(ulBeginFootnoteInfo);
-<a name="l00521"></a>00521         tFootnoteInfoLen =
-<a name="l00522"></a>00522                 (size_t)ulGetLong(0xae, aucHeader); <span class="comment">/* lcbPlcffndRef */</span>
-<a name="l00523"></a>00523         NO_DBG_DEC(tFootnoteInfoLen);
-<a name="l00524"></a>00524 
-<a name="l00525"></a>00525         <span class="keywordflow">if</span> (tFootnoteInfoLen &lt; 10) {
-<a name="l00526"></a>00526                 DBG_MSG(<span class="stringliteral">&quot;No Footnotes in this document&quot;</span>);
-<a name="l00527"></a>00527                 <span class="keywordflow">return</span>;
-<a name="l00528"></a>00528         }
-<a name="l00529"></a>00529 
-<a name="l00530"></a>00530         NO_DBG_DEC(pPPS-&gt;tTable.ulSB);
-<a name="l00531"></a>00531         NO_DBG_HEX(pPPS-&gt;tTable.ulSize);
-<a name="l00532"></a>00532         <span class="keywordflow">if</span> (pPPS-&gt;tTable.ulSize == 0) {
-<a name="l00533"></a>00533                 DBG_MSG(<span class="stringliteral">&quot;No footnotes information&quot;</span>);
-<a name="l00534"></a>00534                 <span class="keywordflow">return</span>;
-<a name="l00535"></a>00535         }
-<a name="l00536"></a>00536 
-<a name="l00537"></a>00537         <span class="keywordflow">if</span> (pPPS-&gt;tTable.ulSize &lt; MIN_SIZE_FOR_BBD_USE) {
-<a name="l00538"></a>00538                 <span class="comment">/* Use the Small Block Depot */</span>
-<a name="l00539"></a>00539                 aulBlockDepot = aulSBD;
-<a name="l00540"></a>00540                 tBlockDepotLen = tSBDLen;
-<a name="l00541"></a>00541                 tBlockSize = SMALL_BLOCK_SIZE;
-<a name="l00542"></a>00542         } <span class="keywordflow">else</span> {
-<a name="l00543"></a>00543                 <span class="comment">/* Use the Big Block Depot */</span>
-<a name="l00544"></a>00544                 aulBlockDepot = aulBBD;
-<a name="l00545"></a>00545                 tBlockDepotLen = tBBDLen;
-<a name="l00546"></a>00546                 tBlockSize = BIG_BLOCK_SIZE;
-<a name="l00547"></a>00547         }
-<a name="l00548"></a>00548         aucBuffer = xmalloc(tFootnoteInfoLen);
-<a name="l00549"></a>00549         <span class="keywordflow">if</span> (!bReadBuffer(pFile, pPPS-&gt;tTable.ulSB,
-<a name="l00550"></a>00550                         aulBlockDepot, tBlockDepotLen, tBlockSize,
-<a name="l00551"></a>00551                         aucBuffer, ulBeginFootnoteInfo, tFootnoteInfoLen)) {
-<a name="l00552"></a>00552                 aucBuffer = xfree(aucBuffer);
-<a name="l00553"></a>00553                 <span class="keywordflow">return</span>;
-<a name="l00554"></a>00554         }
-<a name="l00555"></a>00555         NO_DBG_PRINT_BLOCK(aucBuffer, tFootnoteInfoLen);
-<a name="l00556"></a>00556 
-<a name="l00557"></a>00557         fail(tFootnoteListLength != 0);
-<a name="l00558"></a>00558         tFootnoteListLength = (tFootnoteInfoLen - 4) / 6;
-<a name="l00559"></a>00559         fail(tFootnoteListLength == 0);
-<a name="l00560"></a>00560 
-<a name="l00561"></a>00561         fail(aulFootnoteList != NULL);
-<a name="l00562"></a>00562         aulFootnoteList = xcalloc(tFootnoteListLength, <span class="keyword">sizeof</span>(ULONG));
-<a name="l00563"></a>00563 
-<a name="l00564"></a>00564         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tFootnoteListLength; tIndex++) {
-<a name="l00565"></a>00565                 ulOffset = ulGetLong(tIndex * 4, aucBuffer);
-<a name="l00566"></a>00566                 NO_DBG_HEX(ulOffset);
-<a name="l00567"></a>00567                 ulFileOffset = ulCharPos2FileOffset(ulBeginOfText + ulOffset);
-<a name="l00568"></a>00568                 NO_DBG_HEX(ulFileOffset);
-<a name="l00569"></a>00569                 aulFootnoteList[tIndex] = ulFileOffset;
-<a name="l00570"></a>00570         }
-<a name="l00571"></a>00571         aucBuffer = xfree(aucBuffer);
-<a name="l00572"></a>00572 } <span class="comment">/* end of vGet8FootnotesInfo */</span>
-<a name="l00573"></a>00573 
-<a name="l00574"></a>00574 <span class="comment">/*</span>
-<a name="l00575"></a>00575 <span class="comment"> * Build the list with footnote text information for Word 8/9/10 files</span>
-<a name="l00576"></a>00576 <span class="comment"> */</span>
-<a name="l00577"></a>00577 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00578"></a>00578 vGet8FootnotesText(FILE *pFile, <span class="keyword">const</span> pps_info_type *pPPS,
-<a name="l00579"></a>00579         <span class="keyword">const</span> ULONG *aulBBD, <span class="keywordtype">size_t</span> tBBDLen,
-<a name="l00580"></a>00580         <span class="keyword">const</span> ULONG *aulSBD, <span class="keywordtype">size_t</span> tSBDLen,
-<a name="l00581"></a>00581         <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00582"></a>00582 {
-<a name="l00583"></a>00583         footnote_local_type     *pCurr;
-<a name="l00584"></a>00584         <span class="keyword">const</span> ULONG     *aulBlockDepot;
-<a name="l00585"></a>00585         UCHAR   *aucBuffer;
-<a name="l00586"></a>00586         ULONG   ulCharPos, ulBeginOfFootnotes, ulOffset, ulBeginFootnoteText;
-<a name="l00587"></a>00587         <span class="keywordtype">size_t</span>  tFootnoteTextLen, tBlockDepotLen, tBlockSize;
-<a name="l00588"></a>00588         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00589"></a>00589 
-<a name="l00590"></a>00590         TRACE_MSG(<span class="stringliteral">&quot;vGet8FootnotesText&quot;</span>);
-<a name="l00591"></a>00591 
-<a name="l00592"></a>00592         ulBeginOfFootnotes = ulGetLong(0x18, aucHeader); <span class="comment">/* fcMin */</span>
-<a name="l00593"></a>00593         ulBeginOfFootnotes += ulGetLong(0x4c, aucHeader); <span class="comment">/* ccpText */</span>
-<a name="l00594"></a>00594         NO_DBG_HEX(ulBeginOfFootnotes);
-<a name="l00595"></a>00595 
-<a name="l00596"></a>00596         ulBeginFootnoteText = ulGetLong(0xb2, aucHeader); <span class="comment">/* fcPlcffndTxt */</span>
-<a name="l00597"></a>00597         NO_DBG_HEX(ulBeginFootnoteText);
-<a name="l00598"></a>00598         tFootnoteTextLen =
-<a name="l00599"></a>00599                 (size_t)ulGetLong(0xb6, aucHeader); <span class="comment">/* lcbPlcffndTxt */</span>
-<a name="l00600"></a>00600         NO_DBG_DEC(tFootnoteTextLen);
-<a name="l00601"></a>00601 
-<a name="l00602"></a>00602         <span class="keywordflow">if</span> (tFootnoteTextLen &lt; 12) {
-<a name="l00603"></a>00603                 DBG_MSG(<span class="stringliteral">&quot;No Footnote text in this document&quot;</span>);
-<a name="l00604"></a>00604                 <span class="keywordflow">return</span>;
-<a name="l00605"></a>00605         }
-<a name="l00606"></a>00606 
-<a name="l00607"></a>00607         NO_DBG_DEC(pPPS-&gt;tTable.ulSB);
-<a name="l00608"></a>00608         NO_DBG_HEX(pPPS-&gt;tTable.ulSize);
-<a name="l00609"></a>00609         <span class="keywordflow">if</span> (pPPS-&gt;tTable.ulSize == 0) {
-<a name="l00610"></a>00610                 DBG_MSG(<span class="stringliteral">&quot;No footnote text information&quot;</span>);
-<a name="l00611"></a>00611                 <span class="keywordflow">return</span>;
-<a name="l00612"></a>00612         }
-<a name="l00613"></a>00613 
-<a name="l00614"></a>00614         <span class="keywordflow">if</span> (pPPS-&gt;tTable.ulSize &lt; MIN_SIZE_FOR_BBD_USE) {
-<a name="l00615"></a>00615                 <span class="comment">/* Use the Small Block Depot */</span>
-<a name="l00616"></a>00616                 aulBlockDepot = aulSBD;
-<a name="l00617"></a>00617                 tBlockDepotLen = tSBDLen;
-<a name="l00618"></a>00618                 tBlockSize = SMALL_BLOCK_SIZE;
-<a name="l00619"></a>00619         } <span class="keywordflow">else</span> {
-<a name="l00620"></a>00620                 <span class="comment">/* Use the Big Block Depot */</span>
-<a name="l00621"></a>00621                 aulBlockDepot = aulBBD;
-<a name="l00622"></a>00622                 tBlockDepotLen = tBBDLen;
-<a name="l00623"></a>00623                 tBlockSize = BIG_BLOCK_SIZE;
-<a name="l00624"></a>00624         }
-<a name="l00625"></a>00625         aucBuffer = xmalloc(tFootnoteTextLen);
-<a name="l00626"></a>00626         <span class="keywordflow">if</span> (!bReadBuffer(pFile, pPPS-&gt;tTable.ulSB,
-<a name="l00627"></a>00627                         aulBlockDepot, tBlockDepotLen, tBlockSize,
-<a name="l00628"></a>00628                         aucBuffer, ulBeginFootnoteText, tFootnoteTextLen)) {
-<a name="l00629"></a>00629                 aucBuffer = xfree(aucBuffer);
-<a name="l00630"></a>00630                 <span class="keywordflow">return</span>;
-<a name="l00631"></a>00631         }
-<a name="l00632"></a>00632         NO_DBG_PRINT_BLOCK(aucBuffer, tFootnoteTextLen);
-<a name="l00633"></a>00633 
-<a name="l00634"></a>00634         fail(tFootnoteTextLength != 0);
-<a name="l00635"></a>00635         tFootnoteTextLength = tFootnoteTextLen / 4 - 2;
-<a name="l00636"></a>00636         fail(tFootnoteTextLength == 0);
-<a name="l00637"></a>00637 
-<a name="l00638"></a>00638         fail(pFootnoteText != NULL);
-<a name="l00639"></a>00639         pFootnoteText = xcalloc(tFootnoteTextLength,
-<a name="l00640"></a>00640                                 <span class="keyword">sizeof</span>(footnote_local_type));
-<a name="l00641"></a>00641 
-<a name="l00642"></a>00642         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tFootnoteTextLength; tIndex++) {
-<a name="l00643"></a>00643                 pCurr = pFootnoteText + tIndex;
-<a name="l00644"></a>00644                 pCurr-&gt;tInfo.szText = NULL;
-<a name="l00645"></a>00645                 ulOffset = ulGetLong(tIndex * 4, aucBuffer);
-<a name="l00646"></a>00646                 NO_DBG_HEX(ulOffset);
-<a name="l00647"></a>00647                 ulCharPos = ulBeginOfFootnotes + ulOffset;
-<a name="l00648"></a>00648                 NO_DBG_HEX(ulCharPos);
-<a name="l00649"></a>00649                 NO_DBG_HEX(ulCharPos2FileOffset(ulCharPos));
-<a name="l00650"></a>00650                 pCurr-&gt;ulCharPosStart = ulCharPos;
-<a name="l00651"></a>00651                 ulOffset = ulGetLong(tIndex * 4 + 4, aucBuffer);
-<a name="l00652"></a>00652                 NO_DBG_HEX(ulOffset);
-<a name="l00653"></a>00653                 ulCharPos = ulBeginOfFootnotes + ulOffset;
-<a name="l00654"></a>00654                 NO_DBG_HEX(ulCharPos);
-<a name="l00655"></a>00655                 NO_DBG_HEX(ulCharPos2FileOffset(ulCharPos));
-<a name="l00656"></a>00656                 pCurr-&gt;ulCharPosNext = ulCharPos;
-<a name="l00657"></a>00657                 pCurr-&gt;bUseful = pCurr-&gt;ulCharPosStart != pCurr-&gt;ulCharPosNext;
-<a name="l00658"></a>00658         }
-<a name="l00659"></a>00659         aucBuffer = xfree(aucBuffer);
-<a name="l00660"></a>00660 } <span class="comment">/* end of vGet8FootnotesText */</span>
-<a name="l00661"></a>00661 
-<a name="l00662"></a>00662 <span class="comment">/*</span>
-<a name="l00663"></a>00663 <span class="comment"> * Build the list with endnote information for Word 8/9/10 files</span>
-<a name="l00664"></a>00664 <span class="comment"> */</span>
-<a name="l00665"></a>00665 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00666"></a>00666 vGet8EndnotesInfo(FILE *pFile, <span class="keyword">const</span> pps_info_type *pPPS,
-<a name="l00667"></a>00667         <span class="keyword">const</span> ULONG *aulBBD, <span class="keywordtype">size_t</span> tBBDLen,
-<a name="l00668"></a>00668         <span class="keyword">const</span> ULONG *aulSBD, <span class="keywordtype">size_t</span> tSBDLen,
-<a name="l00669"></a>00669         <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00670"></a>00670 {
-<a name="l00671"></a>00671         <span class="keyword">const</span> ULONG     *aulBlockDepot;
-<a name="l00672"></a>00672         UCHAR   *aucBuffer;
-<a name="l00673"></a>00673         ULONG   ulFileOffset, ulBeginOfText, ulOffset, ulBeginEndnoteInfo;
-<a name="l00674"></a>00674         <span class="keywordtype">size_t</span>  tEndnoteInfoLen, tBlockDepotLen, tBlockSize;
-<a name="l00675"></a>00675         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00676"></a>00676 
-<a name="l00677"></a>00677         TRACE_MSG(<span class="stringliteral">&quot;vGet8EndnotesInfo&quot;</span>);
-<a name="l00678"></a>00678 
-<a name="l00679"></a>00679         ulBeginOfText = ulGetLong(0x18, aucHeader); <span class="comment">/* fcMin */</span>
-<a name="l00680"></a>00680         NO_DBG_HEX(ulBeginOfText);
-<a name="l00681"></a>00681         ulBeginEndnoteInfo = ulGetLong(0x20a, aucHeader); <span class="comment">/* fcPlcfendRef */</span>
-<a name="l00682"></a>00682         NO_DBG_HEX(ulBeginEndnoteInfo);
-<a name="l00683"></a>00683         tEndnoteInfoLen = (size_t)ulGetLong(0x20e, aucHeader); <span class="comment">/* lcbPlcfendRef */</span>
-<a name="l00684"></a>00684         NO_DBG_DEC(tEndnoteInfoLen);
-<a name="l00685"></a>00685 
-<a name="l00686"></a>00686         <span class="keywordflow">if</span> (tEndnoteInfoLen &lt; 10) {
-<a name="l00687"></a>00687                 DBG_MSG(<span class="stringliteral">&quot;No endnotes in this document&quot;</span>);
-<a name="l00688"></a>00688                 <span class="keywordflow">return</span>;
-<a name="l00689"></a>00689         }
-<a name="l00690"></a>00690 
-<a name="l00691"></a>00691         NO_DBG_DEC(pPPS-&gt;tTable.ulSB);
-<a name="l00692"></a>00692         NO_DBG_HEX(pPPS-&gt;tTable.ulSize);
-<a name="l00693"></a>00693         <span class="keywordflow">if</span> (pPPS-&gt;tTable.ulSize == 0) {
-<a name="l00694"></a>00694                 DBG_MSG(<span class="stringliteral">&quot;No endnotes information&quot;</span>);
-<a name="l00695"></a>00695                 <span class="keywordflow">return</span>;
-<a name="l00696"></a>00696         }
-<a name="l00697"></a>00697 
-<a name="l00698"></a>00698         <span class="keywordflow">if</span> (pPPS-&gt;tTable.ulSize &lt; MIN_SIZE_FOR_BBD_USE) {
-<a name="l00699"></a>00699                 <span class="comment">/* Use the Small Block Depot */</span>
-<a name="l00700"></a>00700                 aulBlockDepot = aulSBD;
-<a name="l00701"></a>00701                 tBlockDepotLen = tSBDLen;
-<a name="l00702"></a>00702                 tBlockSize = SMALL_BLOCK_SIZE;
-<a name="l00703"></a>00703         } <span class="keywordflow">else</span> {
-<a name="l00704"></a>00704                 <span class="comment">/* Use the Big Block Depot */</span>
-<a name="l00705"></a>00705                 aulBlockDepot = aulBBD;
-<a name="l00706"></a>00706                 tBlockDepotLen = tBBDLen;
-<a name="l00707"></a>00707                 tBlockSize = BIG_BLOCK_SIZE;
-<a name="l00708"></a>00708         }
-<a name="l00709"></a>00709         aucBuffer = xmalloc(tEndnoteInfoLen);
-<a name="l00710"></a>00710         <span class="keywordflow">if</span> (!bReadBuffer(pFile, pPPS-&gt;tTable.ulSB,
-<a name="l00711"></a>00711                         aulBlockDepot, tBlockDepotLen, tBlockSize,
-<a name="l00712"></a>00712                         aucBuffer, ulBeginEndnoteInfo, tEndnoteInfoLen)) {
-<a name="l00713"></a>00713                 aucBuffer = xfree(aucBuffer);
-<a name="l00714"></a>00714                 <span class="keywordflow">return</span>;
-<a name="l00715"></a>00715         }
-<a name="l00716"></a>00716         NO_DBG_PRINT_BLOCK(aucBuffer, tEndnoteInfoLen);
-<a name="l00717"></a>00717 
-<a name="l00718"></a>00718         fail(tEndnoteListLength != 0);
-<a name="l00719"></a>00719         tEndnoteListLength = (tEndnoteInfoLen - 4) / 6;
-<a name="l00720"></a>00720         fail(tEndnoteListLength == 0);
-<a name="l00721"></a>00721 
-<a name="l00722"></a>00722         fail(aulEndnoteList != NULL);
-<a name="l00723"></a>00723         aulEndnoteList = xcalloc(tEndnoteListLength, <span class="keyword">sizeof</span>(ULONG));
-<a name="l00724"></a>00724 
-<a name="l00725"></a>00725         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tEndnoteListLength; tIndex++) {
-<a name="l00726"></a>00726                 ulOffset = ulGetLong(tIndex * 4, aucBuffer);
-<a name="l00727"></a>00727                 NO_DBG_HEX(ulOffset);
-<a name="l00728"></a>00728                 ulFileOffset = ulCharPos2FileOffset(ulBeginOfText + ulOffset);
-<a name="l00729"></a>00729                 NO_DBG_HEX(ulFileOffset);
-<a name="l00730"></a>00730                 aulEndnoteList[tIndex] = ulFileOffset;
-<a name="l00731"></a>00731         }
-<a name="l00732"></a>00732         aucBuffer = xfree(aucBuffer);
-<a name="l00733"></a>00733 } <span class="comment">/* end of vGet8EndnotesInfo */</span>
-<a name="l00734"></a>00734 
-<a name="l00735"></a>00735 <span class="comment">/*</span>
-<a name="l00736"></a>00736 <span class="comment"> * Build the lists with footnote and endnote information for Word 8/9/10 files</span>
-<a name="l00737"></a>00737 <span class="comment"> */</span>
-<a name="l00738"></a>00738 <span class="keyword">static</span> <span class="keywordtype">void</span>
-<a name="l00739"></a>00739 vGet8NotesInfo(FILE *pFile, <span class="keyword">const</span> pps_info_type *pPPS,
-<a name="l00740"></a>00740         <span class="keyword">const</span> ULONG *aulBBD, <span class="keywordtype">size_t</span> tBBDLen,
-<a name="l00741"></a>00741         <span class="keyword">const</span> ULONG *aulSBD, <span class="keywordtype">size_t</span> tSBDLen,
-<a name="l00742"></a>00742         <span class="keyword">const</span> UCHAR *aucHeader)
-<a name="l00743"></a>00743 {
-<a name="l00744"></a>00744         TRACE_MSG(<span class="stringliteral">&quot;vGet8NotesInfo&quot;</span>);
-<a name="l00745"></a>00745 
-<a name="l00746"></a>00746         vGet8FootnotesInfo(pFile, pPPS,
-<a name="l00747"></a>00747                         aulBBD, tBBDLen, aulSBD, tSBDLen, aucHeader);
-<a name="l00748"></a>00748         vGet8FootnotesText(pFile, pPPS,
-<a name="l00749"></a>00749                         aulBBD, tBBDLen, aulSBD, tSBDLen, aucHeader);
-<a name="l00750"></a>00750         vGet8EndnotesInfo(pFile, pPPS,
-<a name="l00751"></a>00751                         aulBBD, tBBDLen, aulSBD, tSBDLen, aucHeader);
-<a name="l00752"></a>00752 } <span class="comment">/* end of vGet8NotesInfo */</span>
-<a name="l00753"></a>00753 
-<a name="l00754"></a>00754 <span class="comment">/*</span>
-<a name="l00755"></a>00755 <span class="comment"> * Build the lists with footnote and endnote information</span>
-<a name="l00756"></a>00756 <span class="comment"> */</span>
-<a name="l00757"></a>00757 <span class="keywordtype">void</span>
-<a name="l00758"></a>00758 vGetNotesInfo(FILE *pFile, <span class="keyword">const</span> pps_info_type *pPPS,
-<a name="l00759"></a>00759         <span class="keyword">const</span> ULONG *aulBBD, <span class="keywordtype">size_t</span> tBBDLen,
-<a name="l00760"></a>00760         <span class="keyword">const</span> ULONG *aulSBD, <span class="keywordtype">size_t</span> tSBDLen,
-<a name="l00761"></a>00761         <span class="keyword">const</span> UCHAR *aucHeader, <span class="keywordtype">int</span> iWordVersion)
-<a name="l00762"></a>00762 {
-<a name="l00763"></a>00763         TRACE_MSG(<span class="stringliteral">&quot;vGetNotesInfo&quot;</span>);
-<a name="l00764"></a>00764 
-<a name="l00765"></a>00765         fail(pFile == NULL);
-<a name="l00766"></a>00766         fail(pPPS == NULL &amp;&amp; iWordVersion &gt;= 6);
-<a name="l00767"></a>00767         fail(aulBBD == NULL &amp;&amp; tBBDLen != 0);
-<a name="l00768"></a>00768         fail(aulSBD == NULL &amp;&amp; tSBDLen != 0);
-<a name="l00769"></a>00769         fail(aucHeader == NULL);
-<a name="l00770"></a>00770 
-<a name="l00771"></a>00771         <span class="keywordflow">switch</span> (iWordVersion) {
-<a name="l00772"></a>00772         <span class="keywordflow">case</span> 0:
-<a name="l00773"></a>00773                 vGet0NotesInfo(pFile, aucHeader);
-<a name="l00774"></a>00774                 <span class="keywordflow">break</span>;
-<a name="l00775"></a>00775         <span class="keywordflow">case</span> 1:
-<a name="l00776"></a>00776         <span class="keywordflow">case</span> 2:
-<a name="l00777"></a>00777                 vGet2NotesInfo(pFile, aucHeader);
-<a name="l00778"></a>00778                 <span class="keywordflow">break</span>;
-<a name="l00779"></a>00779         <span class="keywordflow">case</span> 4:
-<a name="l00780"></a>00780         <span class="keywordflow">case</span> 5:
-<a name="l00781"></a>00781                 <span class="keywordflow">break</span>;
-<a name="l00782"></a>00782         <span class="keywordflow">case</span> 6:
-<a name="l00783"></a>00783         <span class="keywordflow">case</span> 7:
-<a name="l00784"></a>00784                 vGet6NotesInfo(pFile, pPPS-&gt;tWordDocument.ulSB,
-<a name="l00785"></a>00785                         aulBBD, tBBDLen, aucHeader);
-<a name="l00786"></a>00786                 <span class="keywordflow">break</span>;
-<a name="l00787"></a>00787         <span class="keywordflow">case</span> 8:
-<a name="l00788"></a>00788                 vGet8NotesInfo(pFile, pPPS,
-<a name="l00789"></a>00789                         aulBBD, tBBDLen, aulSBD, tSBDLen, aucHeader);
-<a name="l00790"></a>00790                 <span class="keywordflow">break</span>;
-<a name="l00791"></a>00791         <span class="keywordflow">default</span>:
-<a name="l00792"></a>00792                 werr(0, <span class="stringliteral">&quot;Sorry, no notes information&quot;</span>);
-<a name="l00793"></a>00793                 <span class="keywordflow">break</span>;
-<a name="l00794"></a>00794         }
-<a name="l00795"></a>00795 } <span class="comment">/* end of vGetNotesInfo */</span>
-<a name="l00796"></a>00796 
-<a name="l00797"></a>00797 <span class="comment">/*</span>
-<a name="l00798"></a>00798 <span class="comment"> *  vPrepareFootnoteText - prepare the footnote text</span>
-<a name="l00799"></a>00799 <span class="comment"> */</span>
-<a name="l00800"></a>00800 <span class="keywordtype">void</span>
-<a name="l00801"></a>00801 vPrepareFootnoteText(FILE *pFile)
-<a name="l00802"></a>00802 { 
-<a name="l00803"></a>00803         footnote_local_type     *pCurr;
-<a name="l00804"></a>00804         <span class="keywordtype">size_t</span>          tFootnote;
-<a name="l00805"></a>00805 
-<a name="l00806"></a>00806         fail(pFile == NULL);
-<a name="l00807"></a>00807         fail(pFootnoteText == NULL &amp;&amp; tFootnoteTextLength != 0);
-<a name="l00808"></a>00808 
-<a name="l00809"></a>00809         <span class="keywordflow">if</span> (pFootnoteText == NULL || tFootnoteTextLength == 0) {
-<a name="l00810"></a>00810                 <span class="comment">/* No information */</span>
-<a name="l00811"></a>00811                 <span class="keywordflow">return</span>;
-<a name="l00812"></a>00812         }
-<a name="l00813"></a>00813 
-<a name="l00814"></a>00814         <span class="comment">/* Fill text and useful-ness */</span>
-<a name="l00815"></a>00815         <span class="keywordflow">for</span> (tFootnote = 0; tFootnote &lt; tFootnoteTextLength; tFootnote++) {
-<a name="l00816"></a>00816                 pCurr = pFootnoteText + tFootnote;
-<a name="l00817"></a>00817                 pCurr-&gt;bUseful = pCurr-&gt;ulCharPosStart != pCurr-&gt;ulCharPosNext;
-<a name="l00818"></a>00818                 <span class="keywordflow">if</span> (pCurr-&gt;bUseful) {
-<a name="l00819"></a>00819                         pCurr-&gt;tInfo.szText = szFootnoteDecryptor(pFile,
-<a name="l00820"></a>00820                                                         pCurr-&gt;ulCharPosStart,
-<a name="l00821"></a>00821                                                         pCurr-&gt;ulCharPosNext);
-<a name="l00822"></a>00822                 } <span class="keywordflow">else</span> {
-<a name="l00823"></a>00823                         pCurr-&gt;tInfo.szText = NULL;
-<a name="l00824"></a>00824                 }
-<a name="l00825"></a>00825         }
-<a name="l00826"></a>00826 } <span class="comment">/* end of vPrepareFootnoteText */</span>
-<a name="l00827"></a>00827 
-<a name="l00828"></a>00828 <span class="comment">/*</span>
-<a name="l00829"></a>00829 <span class="comment"> * szGetFootnootText - get the text of the spefified footnote</span>
-<a name="l00830"></a>00830 <span class="comment"> */</span>
-<a name="l00831"></a>00831 <span class="keyword">const</span> <span class="keywordtype">char</span> *
-<a name="l00832"></a>00832 szGetFootnootText(UINT uiFootnoteIndex)
-<a name="l00833"></a>00833 {
-<a name="l00834"></a>00834         <span class="keywordflow">if</span> ((<span class="keywordtype">size_t</span>)uiFootnoteIndex &gt;= tFootnoteTextLength) {
-<a name="l00835"></a>00835                 <span class="keywordflow">return</span> NULL;
-<a name="l00836"></a>00836         }
-<a name="l00837"></a>00837         <span class="keywordflow">return</span> pFootnoteText[uiFootnoteIndex].tInfo.szText;
-<a name="l00838"></a>00838 } <span class="comment">/* end of szGetFootnootText */</span>
-<a name="l00839"></a>00839 
-<a name="l00840"></a>00840 <span class="comment">/*</span>
-<a name="l00841"></a>00841 <span class="comment"> * Get the notetype of the note at the given fileoffset</span>
-<a name="l00842"></a>00842 <span class="comment"> */</span>
-<a name="l00843"></a>00843 notetype_enum
-<a name="l00844"></a>00844 eGetNotetype(ULONG ulFileOffset)
-<a name="l00845"></a>00845 {
-<a name="l00846"></a>00846         <span class="keywordtype">size_t</span>  tIndex;
-<a name="l00847"></a>00847 
-<a name="l00848"></a>00848         TRACE_MSG(<span class="stringliteral">&quot;eGetNotetype&quot;</span>);
-<a name="l00849"></a>00849 
-<a name="l00850"></a>00850         fail(aulFootnoteList == NULL &amp;&amp; tFootnoteListLength != 0);
-<a name="l00851"></a>00851         fail(aulEndnoteList == NULL &amp;&amp; tEndnoteListLength != 0);
-<a name="l00852"></a>00852 
-<a name="l00853"></a>00853         <span class="comment">/* Go for the easy answers first */</span>
-<a name="l00854"></a>00854         <span class="keywordflow">if</span> (tFootnoteListLength == 0 &amp;&amp; tEndnoteListLength == 0) {
-<a name="l00855"></a>00855                 <span class="keywordflow">return</span> notetype_is_unknown;
-<a name="l00856"></a>00856         }
-<a name="l00857"></a>00857         <span class="keywordflow">if</span> (tEndnoteListLength == 0) {
-<a name="l00858"></a>00858                 <span class="keywordflow">return</span> notetype_is_footnote;
-<a name="l00859"></a>00859         }
-<a name="l00860"></a>00860         <span class="keywordflow">if</span> (tFootnoteListLength == 0) {
-<a name="l00861"></a>00861                 <span class="keywordflow">return</span> notetype_is_endnote;
-<a name="l00862"></a>00862         }
-<a name="l00863"></a>00863         <span class="comment">/* No easy answer, so we search */</span>
-<a name="l00864"></a>00864         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tFootnoteListLength; tIndex++) {
-<a name="l00865"></a>00865                 <span class="keywordflow">if</span> (aulFootnoteList[tIndex] == ulFileOffset) {
-<a name="l00866"></a>00866                         <span class="keywordflow">return</span> notetype_is_footnote;
-<a name="l00867"></a>00867                 }
-<a name="l00868"></a>00868         }
-<a name="l00869"></a>00869         <span class="keywordflow">for</span> (tIndex = 0; tIndex &lt; tEndnoteListLength; tIndex++) {
-<a name="l00870"></a>00870                 <span class="keywordflow">if</span> (aulEndnoteList[tIndex] == ulFileOffset) {
-<a name="l00871"></a>00871                         <span class="keywordflow">return</span> notetype_is_endnote;
-<a name="l00872"></a>00872                 }
-<a name="l00873"></a>00873         }
-<a name="l00874"></a>00874         <span class="comment">/* Not found */</span>
-<a name="l00875"></a>00875         <span class="keywordflow">return</span> notetype_is_unknown;
-<a name="l00876"></a>00876 } <span class="comment">/* end of eGetNotetype */</span>
-</pre></div></div>
-<hr size="1"/><address style="text-align: right;"><small>Generated by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.2 </small></address>
-</body>
-</html>