mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 15:28:06 +02:00
102 lines
3.1 KiB
TeX
102 lines
3.1 KiB
TeX
%
|
|
% $Id$
|
|
% This file is part of the FPC documentation.
|
|
% Copyright (C) 1997, by Michael Van Canneyt
|
|
%
|
|
% The FPC documentation is free text; you can redistribute it and/or
|
|
% modify it under the terms of the GNU Library General Public License as
|
|
% published by the Free Software Foundation; either version 2 of the
|
|
% License, or (at your option) any later version.
|
|
%
|
|
% The FPC Documentation is distributed in the hope that it will be useful,
|
|
% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
% Library General Public License for more details.
|
|
%
|
|
% You should have received a copy of the GNU Library General Public
|
|
% License along with the FPC documentation; see the file COPYING.LIB. If not,
|
|
% write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
% Boston, MA 02111-1307, USA.
|
|
%
|
|
\documentclass{report}
|
|
%
|
|
% This is just a main file. All units are described in separate files.
|
|
%
|
|
% Preamble
|
|
%
|
|
\usepackage{a4}
|
|
\usepackage{makeidx}
|
|
\usepackage{html}
|
|
\latex{\usepackage{fpk}}
|
|
\html{\input{fpk-html.tex}}
|
|
\makeindex
|
|
|
|
%
|
|
% start of document.
|
|
%
|
|
\begin{document}
|
|
\title{Free Pascal supplied units : \\ Reference guide.}
|
|
\docdescription{Reference guide for standard Free Pascal units.}
|
|
\docversion{1.2}
|
|
\date{July 1997}
|
|
\author{Micha\"el Van Canneyt\\ Florian Kl\"ampfl}
|
|
\maketitle
|
|
\tableofcontents
|
|
\newpage
|
|
|
|
\section*{About this guide}
|
|
This document describes all constants, types, variables, functions and
|
|
procedures as they are declared in the units that come standard with \fpk.
|
|
|
|
Throughout this document, we will refer to functions, types and variables
|
|
with \var{typewriter} font. Functions and procedures gave their own
|
|
subsections, and for each function or procedure we have the following
|
|
topics:
|
|
\begin{description}
|
|
\item [Declaration] The exact declaration of the function.
|
|
\item [Description] What does the procedure exactly do ?
|
|
\item [Errors] What errors can occur.
|
|
\item [See Also] Cross references to other related functions/commands.
|
|
\end{description}
|
|
The cross-references come in two flavors:
|
|
\begin{itemize}
|
|
\item References to other functions in this manual. In the printed copy, a
|
|
number will appear after this reference. It refers to the page where this
|
|
function is explained. In the on-line help pages, this is a hyperlink, on
|
|
which you can click to jump to the declaration.
|
|
\item References to Unix manual pages. (For Linux related things only) they
|
|
are printed in \var{typewriter} font, and the number after it is the Unix
|
|
manual section.
|
|
\end{itemize}
|
|
The chapters are ordered alphabetically. The functions and procedures in
|
|
most cases also, but don't count on it. Use the table of contents for quick
|
|
lookup.
|
|
|
|
%
|
|
% Each unit is in its own file. Each file is a chapter.
|
|
%
|
|
|
|
% The crt unit.
|
|
\input{crt.tex}
|
|
% The Dos unit
|
|
\input{dos.tex}
|
|
% The getopts unit
|
|
\input{getopts.tex}
|
|
% the go32 unit
|
|
\input{go32.tex}
|
|
% The graph unit
|
|
\input{graph.tex}
|
|
% the Linux unit
|
|
\input{linux.tex}
|
|
% The MMX unit
|
|
\input{mmx.tex}
|
|
% the printer unit
|
|
\input{printer.tex}
|
|
% the sockets unit
|
|
\input{sockets.tex}
|
|
% the strings unit
|
|
\input{strings.tex}
|
|
|
|
\printindex
|
|
\end{document}
|