]> www.fi.muni.cz Git - evince.git/blob - backend/ps/ps-document.h
Check return value of psscan before trying to use it. Fixes bug #372414.
[evince.git] / backend / ps / ps-document.h
1 /*
2  * Ghostscript widget for GTK/GNOME
3  * 
4  * Copyright 1998 - 2005 The Free Software Foundation
5  * 
6  * Authors: Jaka Mocnik, Federico Mena (Quartic), Szekeres Istvan (Pista)
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #ifndef __PS_DOCUMENT_H__
25 #define __PS_DOCUMENT_H__
26
27 #include "ev-document.h"
28
29 G_BEGIN_DECLS
30
31 #define PS_TYPE_DOCUMENT           (ps_document_get_type())
32 #define PS_DOCUMENT(obj)           GTK_CHECK_CAST (obj, PS_TYPE_DOCUMENT, PSDocument)
33 #define PS_DOCUMENT_CLASS(klass)   GTK_CHECK_CLASS_CAST (klass, PS_TYPE_DOCUMENT, PSDocumentClass)
34 #define PS_IS_DOCUMENT(obj)        GTK_CHECK_TYPE (obj, PS_TYPE_DOCUMENT)
35 #define PS_DOCUMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PS_TYPE_DOCUMENT, PSDocumentClass))
36
37 typedef struct _PSDocument      PSDocument;
38 typedef struct _PSDocumentClass PSDocumentClass;
39
40 GType ps_document_get_type (void) G_GNUC_CONST;
41
42 G_END_DECLS
43
44 #endif /* __PS_DOCUMENT_H__ */