units.tex 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. %
  2. % $Id$
  3. % This file is part of the FPC documentation.
  4. % Copyright (C) 1997, by Michael Van Canneyt
  5. %
  6. % The FPC documentation is free text; you can redistribute it and/or
  7. % modify it under the terms of the GNU Library General Public License as
  8. % published by the Free Software Foundation; either version 2 of the
  9. % License, or (at your option) any later version.
  10. %
  11. % The FPC Documentation is distributed in the hope that it will be useful,
  12. % but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. % Library General Public License for more details.
  15. %
  16. % You should have received a copy of the GNU Library General Public
  17. % License along with the FPC documentation; see the file COPYING.LIB. If not,
  18. % write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. % Boston, MA 02111-1307, USA.
  20. %
  21. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  22. % Preamble.
  23. \input{preamble.inc}
  24. \latex{%
  25. \ifpdf
  26. \pdfinfo{/Author(Michael Van Canneyt)
  27. /Title(Standard units Reference Guide)
  28. /Subject(Free Pascal Standard units reference guide)
  29. /Keywords(Free Pascal, Units, RTL)
  30. }
  31. \fi
  32. }
  33. %
  34. % Settings
  35. %
  36. \makeindex
  37. %
  38. % Syntax style
  39. %
  40. % This is just a main file. All units are described in separate files.
  41. %
  42. \usepackage{syntax}
  43. \input{syntax/diagram.tex}
  44. %
  45. % Start of document.
  46. %
  47. \begin{document}
  48. \title{Free Pascal supplied units : \\ Reference guide.}
  49. \docdescription{Reference guide for standard Free Pascal units.}
  50. \docversion{1.8}
  51. \input{date.inc}
  52. \author{Micha\"el Van Canneyt\\ Florian Kl\"ampfl}
  53. \maketitle
  54. \tableofcontents
  55. \newpage
  56. \section*{About this guide}
  57. This document describes all constants, types, variables, functions and
  58. procedures as they are declared in the units that come standard with \fpc.
  59. Throughout this document, we will refer to functions, types and variables
  60. with \var{typewriter} font. Functions and procedures gave their own
  61. subsections, and for each function or procedure we have the following
  62. topics:
  63. \begin{description}
  64. \item [Declaration] The exact declaration of the function.
  65. \item [Description] What does the procedure exactly do ?
  66. \item [Errors] What errors can occur.
  67. \item [See Also] Cross references to other related functions/commands.
  68. \end{description}
  69. The cross-references come in two flavors:
  70. \begin{itemize}
  71. \item References to other functions in this manual. In the printed copy, a
  72. number will appear after this reference. It refers to the page where this
  73. function is explained. In the on-line help pages, this is a hyperlink, on
  74. which you can click to jump to the declaration.
  75. \item References to Unix manual pages. (For Linux related things only) they
  76. are printed in \var{typewriter} font, and the number after it is the Unix
  77. manual section.
  78. \end{itemize}
  79. The chapters are ordered alphabetically. The functions and procedures in
  80. most cases also, but don't count on it. Use the table of contents for quick
  81. lookup.
  82. %
  83. % Each unit is in its own file. Each file is a chapter.
  84. %
  85. % The crt unit.
  86. \input{crt.tex}
  87. % The Dos unit
  88. \input{dos.tex}
  89. % The DXELoad unit
  90. \input{dxeload.tex}
  91. % The emu387 unit
  92. \input{emu387.tex}
  93. % The getopts unit
  94. \input{getopts.tex}
  95. % The GPM unit
  96. \input{gpm.tex}
  97. % the go32 unit
  98. \input{go32.tex}
  99. % The graph unit
  100. \input{graph.tex}
  101. % The HeapTrc unit
  102. \input{heaptrc.tex}
  103. % The IPC unit
  104. \input{ipc.tex}
  105. % The keyboard unit
  106. \input{keyboard.tex}
  107. % the Linux unit
  108. \input{linux.tex}
  109. % the math unit
  110. \input{math.tex}
  111. % The msmouse unit
  112. \input{msmouse.tex}
  113. % The MMX unit
  114. \input{mmx.tex}
  115. % The mouse unit
  116. \input{mouse.tex}
  117. % the objects unit
  118. \input{objects.tex}
  119. % the ports unit
  120. \input{ports.tex}
  121. % the printer unit
  122. \input{printer.tex}
  123. % the sockets unit
  124. \input{sockets.tex}
  125. % the strings unit
  126. \input{strings.tex}
  127. % the sysutils unit
  128. \input{sysutils.tex}
  129. % The typinfo unit
  130. \input{typinfo.tex}
  131. % The VIDEO unit
  132. \input{video.tex}
  133. % end of units. Index.
  134. \printindex
  135. \end{document}