goa: Add missing linker flag (for real).
[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
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 gchar *   _libedataserver_get_extensiondir
30                                                 (void) G_GNUC_CONST;
31 const gchar *   _libedataserver_get_imagesdir   (void) G_GNUC_CONST;
32 const gchar *   _libedataserver_get_ui_uidir    (void) G_GNUC_CONST;
33
34 #undef E_DATA_SERVER_EXTENSIONDIR
35 #define E_DATA_SERVER_EXTENSIONDIR _libedataserver_get_extensiondir ()
36
37 #undef E_DATA_SERVER_IMAGESDIR
38 #define E_DATA_SERVER_IMAGESDIR _libedataserver_get_imagesdir ()
39
40 #undef E_DATA_SERVER_UI_UIDIR
41 #define E_DATA_SERVER_UI_UIDIR _libedataserver_get_ui_uidir ()
42
43 #endif  /* G_OS_WIN32 */
44
45 #endif  /* LIBEDATASERVER_PRIVATE_H */