Evince
Evince is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
paper.h
Go to the documentation of this file.
1 #ifndef MDVI_PAPER
2 #define MDVI_PAPER
3 
4 typedef struct _DviPaper DviPaper;
5 typedef struct _DviPaperSpec DviPaperSpec;
6 
7 typedef enum {
13 
14 struct _DviPaper {
16  const char *name;
17  double inches_wide;
18  double inches_tall;
19 };
20 
21 struct _DviPaperSpec {
22  const char *name;
23  const char *width;
24  const char *height;
25 };
26 
27 
28 extern int mdvi_get_paper_size __PROTO((const char *, DviPaper *));
31 
32 #endif