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
ev-macros.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2012 Christian Persch
3  *
4  * This library is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License as published by the
6  * Free Software Foundation; either version 2.1 of the License, or (at your
7  * option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  */
18 
19 #ifndef EV_MACROS_H
20 #define EV_MACROS_H
21 
22 #if defined(EV_DISABLE_DEPRECATION_WARNINGS) || defined(EVINCE_COMPILATION)
23 #define EV_DEPRECATED
24 #define EV_DEPRECATED_FOR(f)
25 #define EV_UNAVAILABLE(maj,min)
26 #else
27 #define EV_DEPRECATED G_DEPRECATED
28 #define EV_DEPRECATED_FOR(f) G_DEPRECATED_FOR(f)
29 #define EV_UNAVAILABLE(maj,min) G_UNAVAILABLE(maj,min)
30 #endif
31 
32 #endif /* #ifndef EV_MACROS_H */