1 | /* ipf.h -- IPF output
|
---|
2 | Copyright (c) 1993-1998 Eberhard Mattes
|
---|
3 |
|
---|
4 | This file is part of emxdoc.
|
---|
5 |
|
---|
6 | emxdoc is free software; you can redistribute it and/or modify it
|
---|
7 | under the terms of the GNU General Public License as published by
|
---|
8 | the Free Software Foundation; either version 2, or (at your option)
|
---|
9 | any later version.
|
---|
10 |
|
---|
11 | emxdoc 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
|
---|
14 | GNU General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU General Public License
|
---|
17 | along with emxdoc; see the file COPYING. If not, write to
|
---|
18 | the Free Software Foundation, 59 Temple Place - Suite 330,
|
---|
19 | Boston, MA 02111-1307, USA. */
|
---|
20 |
|
---|
21 |
|
---|
22 | #define IPF_DESCRIPTION_INDENT 8
|
---|
23 |
|
---|
24 | EXTERN int hl_ipf;
|
---|
25 | EXTERN int hl_ipf_no;
|
---|
26 |
|
---|
27 | void ipf_begin_link (const uchar *database, int ref);
|
---|
28 | void ipf_end_link (void);
|
---|
29 | void ipf_para (void);
|
---|
30 | void ipf_env_margin (int sp);
|
---|
31 | void ipf_elements (enum style style);
|
---|
32 | void ipf_end_env (void);
|
---|
33 | void ipf_toc_start (void);
|
---|
34 | void ipf_toc_line (const uchar *s, const struct toc *tp);
|
---|
35 | void ipf_toc_end (void);
|
---|
36 | void ipf_heading1 (int level, int ref, int global, unsigned flags);
|
---|
37 | void ipf_heading2 (const uchar *s);
|
---|
38 | void ipf_output (const uchar *p, int may_break);
|
---|
39 | void ipf_margin (int margin);
|
---|
40 | void ipf_hilite (int new);
|
---|
41 | void ipf_description (void);
|
---|
42 | void ipf_enumerate (void);
|
---|
43 | void ipf_itemize (void);
|
---|
44 | void ipf_verbatim_start (enum tag tag_end);
|
---|
45 | void ipf_verbatim_line (void);
|
---|
46 | void ipf_verbatim_end (enum tag tag_end);
|
---|
47 | void ipf_description_item (const uchar *s);
|
---|
48 | void ipf_enumerate_item (void);
|
---|
49 | void ipf_itemize_item (void);
|
---|
50 | void ipf_list_item (const uchar *s);
|
---|
51 | void ipf_prototype_start (void);
|
---|
52 | void ipf_prototype_end (uchar *compat);
|
---|
53 | void ipf_start (void);
|
---|
54 | void ipf_table_start (int do_indent, int *widths, int wn);
|
---|
55 | void ipf_table_line (const uchar *s, int wn);
|
---|
56 | void ipf_table_end (int do_indent);
|
---|
57 | void ipf_index (const uchar *s);
|
---|
58 | void ipf_see_also_start (void);
|
---|
59 | void ipf_see_also_word (const uchar *word, const uchar *s);
|
---|
60 | void ipf_sample_file (const uchar *s);
|
---|
61 | void ipf_libref_section (const uchar *s);
|
---|
62 | void ipf_function_start (const struct toc *tp);
|
---|
63 | void ipf_function_function (const uchar *s);
|
---|
64 | void ipf_copy (void);
|
---|
65 | void ipf_minitoc (const struct toc *tp);
|
---|
66 | void ipf_end (void);
|
---|