~ubuntu-branches/ubuntu/karmic/grace/karmic

« back to all changes in this revision

Viewing changes to src/devlist.h

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-19 14:19:58 UTC
  • Revision ID: james.westby@ubuntu.com-20020319141958-5gxna6vo1ek3zjml
Tags: upstream-5.1.7
ImportĀ upstreamĀ versionĀ 5.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Grace - GRaphing, Advanced Computation and Exploration of data
 
3
 * 
 
4
 * Home page: http://plasma-gate.weizmann.ac.il/Grace/
 
5
 * 
 
6
 * Copyright (c) 1991-95 Paul J Turner, Portland, OR
 
7
 * Copyright (c) 1996-99 Grace Development Team
 
8
 * 
 
9
 * Maintained by Evgeny Stambulchik <fnevgeny@plasma-gate.weizmann.ac.il>
 
10
 * 
 
11
 * 
 
12
 *                           All Rights Reserved
 
13
 * 
 
14
 *    This program is free software; you can redistribute it and/or modify
 
15
 *    it under the terms of the GNU General Public License as published by
 
16
 *    the Free Software Foundation; either version 2 of the License, or
 
17
 *    (at your option) any later version.
 
18
 * 
 
19
 *    This program is distributed in the hope that it will be useful,
 
20
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
21
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
22
 *    GNU General Public License for more details.
 
23
 * 
 
24
 *    You should have received a copy of the GNU General Public License
 
25
 *    along with this program; if not, write to the Free Software
 
26
 *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
27
 */
 
28
 
 
29
/* 
 
30
 *
 
31
 *  list of device init functions
 
32
 *
 
33
 */
 
34
 
 
35
#ifndef __DEVLIST_H_
 
36
#define __DEVLIST_H_
 
37
 
 
38
#include <config.h>
 
39
 
 
40
int register_dummy_drv(void);
 
41
#ifndef NONE_GUI
 
42
int register_x11_drv(void);
 
43
#endif
 
44
int register_ps_drv(void);
 
45
int register_eps_drv(void);
 
46
int register_mf_drv(void);
 
47
int register_mif_drv(void);
 
48
int register_svg_drv(void);
 
49
#ifdef HAVE_LIBPDF
 
50
int register_pdf_drv(void);
 
51
#endif
 
52
int register_pnm_drv(void);
 
53
#ifdef HAVE_LIBJPEG
 
54
int register_jpg_drv(void);
 
55
#endif
 
56
#ifdef HAVE_LIBPNG
 
57
int register_png_drv(void);
 
58
#endif
 
59
 
 
60
#endif /* __DEVLIST_H_ */