~ubuntu-branches/ubuntu/raring/boxshade/raring

1 by Steffen Moeller
Import upstream version 3.1.1
1
/* Header for module bx_dev, generated by p2c */
2
#ifndef _DV_ALL_HEADER_
3
#define _DV_ALL_HEADER_
4
5
#include "bx_types.h"
6
#include "bx_read.h"
7
8
typedef struct {
9
  char  *dev;
10
  void (*Ask)(void);
11
  void (*Init)(double *xpos, double *ypos);
12
  void (*Setcolor)(int colno);
13
  void (*Charout)(char c, double *xpos, double *ypos);
14
  void (*Stringout)(char *s,  double *xpos, double *ypos);
15
  void (*Newline)(double *xpos, double *ypos);
16
  void (*Newpage)(double *xpos, double *ypos);
17
  void (*Exit)(void);
18
} GraphicsDevice;
19
20
extern GraphicsDevice Ansi;
21
extern GraphicsDevice Ascii;
22
#ifdef oCRT
23
extern GraphicsDevice Crt;
24
#endif
25
extern GraphicsDevice Rtf;
26
extern GraphicsDevice Pict;
27
extern GraphicsDevice Postscript;
28
extern GraphicsDevice Eps;
29
extern GraphicsDevice Hpgl;
30
extern GraphicsDevice Lj250;
31
extern GraphicsDevice Fig;
32
extern GraphicsDevice RegisT, RegisP;
33
extern GraphicsDevice Vt;
34
extern GraphicsDevice Html;
35
36
extern void GenericStringOut(char *s,  double *xpos, double *ypos);
37
38
#endif /* _DV_ALL_HEADER_ */
39