Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / libedataserver / libedataserver-private.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* 
3  * libedataserver-private.h: For e-d-s (not just libedataserver)
4  * Copyright 2005, Novell, Inc.
5  *
6  * Authors:
7  *   Tor Lillqvist <tml@novell.com>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of version 2 of the GNU Lesser General Public
11  * License as published by the Free Software Foundation.
12  *
13  * This program 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  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 #ifndef _LIBEDATASERVER_PRIVATE_H_
25 #define _LIBEDATASERVER_PRIVATE_H_
26
27 #ifdef G_OS_WIN32
28
29 const char *_libedataserver_get_extensiondir (void) G_GNUC_CONST;
30 const char *_libedataserver_get_imagesdir (void) G_GNUC_CONST;
31 const char *_libedataserver_get_ui_gladedir (void) G_GNUC_CONST;
32
33 #undef E_DATA_SERVER_EXTENSIONDIR
34 #define E_DATA_SERVER_EXTENSIONDIR _libedataserver_get_extensiondir ()
35
36 #undef E_DATA_SERVER_IMAGESDIR
37 #define E_DATA_SERVER_IMAGESDIR _libedataserver_get_imagesdir ()
38
39 #undef E_DATA_SERVER_UI_GLADEDIR
40 #define E_DATA_SERVER_UI_GLADEDIR _libedataserver_get_ui_gladedir ()
41
42 #endif  /* G_OS_WIN32 */
43
44 #endif  /* _LIBEDATASERVER_PRIVATE_H_ */