1 /* ManPage_enums.h
2  *
3  * Copyright (C) 1996-2005,2009,2013,2015,2016,2021 Paul Boersma
4  *
5  * This code is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or (at
8  * your option) any later version.
9  *
10  * This code is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  * See the GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this work. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 enums_begin (kManPage_type, 1)
20 	enums_add (kManPage_type, 1, INTRO, U"intro")
21 	enums_add (kManPage_type, 2, ENTRY, U"entry")
22 	enums_add (kManPage_type, 3, NORMAL, U"normal")
23 	enums_add (kManPage_type, 4, LIST_ITEM, U"list_item")
24 	enums_add (kManPage_type, 5, TAG, U"tag")
25 	enums_add (kManPage_type, 6, DEFINITION, U"definition")
26 	enums_add (kManPage_type, 7, CODE, U"code")
27 	enums_add (kManPage_type, 8, PROTOTYPE, U"prototype")
28 	enums_add (kManPage_type, 9, EQUATION, U"formula")
29 	enums_add (kManPage_type, 10, PICTURE, U"picture")
30 	enums_add (kManPage_type, 11, SCRIPT, U"script")
31 	enums_add (kManPage_type, 12, LIST_ITEM1, U"list_item1")
32 	enums_add (kManPage_type, 13, LIST_ITEM2, U"list_item2")
getSEHRegNum(unsigned i)33 	enums_add (kManPage_type, 14, LIST_ITEM3, U"list_item3")
34 	enums_add (kManPage_type, 15, TAG1, U"tag1")
35 	enums_add (kManPage_type, 16, TAG2, U"tag2")
36 	enums_add (kManPage_type, 17, TAG3, U"tag3")
37 	enums_add (kManPage_type, 18, DEFINITION1, U"definition1")
38 	enums_add (kManPage_type, 19, DEFINITION2, U"definition2")
39 	enums_add (kManPage_type, 20, DEFINITION3, U"definition3")
40 	enums_add (kManPage_type, 21, CODE1, U"code1")
41 	enums_add (kManPage_type, 22, CODE2, U"code2")
42 	enums_add (kManPage_type, 23, CODE3, U"code3")
43 	enums_add (kManPage_type, 24, CODE4, U"code4")
44 	enums_add (kManPage_type, 25, CODE5, U"code5")
45 	enums_add (kManPage_type, 26, PAGE_TITLE, U"page_title")
46 enums_end (kManPage_type, 26, NORMAL)
47 
48 /* End of file ManPage_enums.h */
49 
50