changes: Bump to 3.8.1
[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 (C) 1999-2008 Novell, Inc. (www.novell.com)
5  *
6  * Authors:
7  *   Tor Lillqvist <tml@novell.com>
8  *
9  * This library is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16  * for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this library; if not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #ifndef LIBEDATASERVER_PRIVATE_H
23 #define LIBEDATASERVER_PRIVATE_H
24
25 #ifdef G_OS_WIN32
26
27 const gchar *   _libedataserver_get_extensiondir
28                                                 (void) G_GNUC_CONST;
29 const gchar *   _libedataserver_get_imagesdir   (void) G_GNUC_CONST;
30 const gchar *   _libedataserver_get_ui_uidir    (void) G_GNUC_CONST;
31
32 #undef E_DATA_SERVER_EXTENSIONDIR
33 #define E_DATA_SERVER_EXTENSIONDIR _libedataserver_get_extensiondir ()
34
35 #undef E_DATA_SERVER_IMAGESDIR
36 #define E_DATA_SERVER_IMAGESDIR _libedataserver_get_imagesdir ()
37
38 #undef E_DATA_SERVER_UI_UIDIR
39 #define E_DATA_SERVER_UI_UIDIR _libedataserver_get_ui_uidir ()
40
41 #endif  /* G_OS_WIN32 */
42
43 #endif  /* LIBEDATASERVER_PRIVATE_H */