1 /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2   outformats.h - defines the output types supported by RefDB
3   markus@mhoenicka.de 2007-09-08
4 
5    This program 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
8    (at your option) any later version.
9 
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    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 program; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 
19   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
20 
21 
22 #ifndef outformats_included
23 #define outformats_included 1
24 
25 /* output formats for getref/getnote */
26 #define REFSCREEN         0
27 #define REFRIS            1
28 #define REFDOCBK          2
29 #define REFBIBTEX         3
30 #define REFHTML           4
31 #define REFCGIHTML        6
32 #define REFCGIRIS         7
33 #define REFDOCBKX         8
34 #define REFTEIX           9
35 #define RISX             10
36 #define REFXHTML         11
37 #define XNOTE            12
38 #define REFCITATIONLISTX 13
39 #define REFMODS          14
40 #define REFDOCBKX5       15
41 #define REFTEIX5         16
42 
43 /* note types */
44 #define REFERENCE  1
45 #define KEYWORD    2
46 #define AUTHOR     4
47 #define PERIODICAL 8
48 
49 #endif /* ifndef outformats_included */
50