~ubuntu-branches/ubuntu/wily/evolution-data-server/wily

« back to all changes in this revision

Viewing changes to libedataserver/libedataserver-private.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2015-07-20 13:34:59 UTC
  • mfrom: (1.1.126) (1.2.48 sid)
  • Revision ID: package-import@ubuntu.com-20150720133459-g6y46hnu5ewtoz08
Tags: 3.16.4-0ubuntu2
debian/patches/0001-Bug-752373-Monthly-events-do-not-recur-correctly.patch:
Cherry-pick patch from upstream to fix events not recurring correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
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)
 
2
/* libedataserver-private.h: For e-d-s (not just libedataserver)
 
3
 *
4
4
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
5
5
 *
6
 
 * Authors:
7
 
 *   Tor Lillqvist <tml@novell.com>
8
 
 *
9
 
 * This library is free software; you can redistribute it and/or modify it
 
6
 * This library is free software: you can redistribute it and/or modify it
10
7
 * under the terms of the GNU Lesser General Public License as published by
11
8
 * the Free Software Foundation.
12
9
 *
13
10
 * This library is distributed in the hope that it will be useful, but
14
11
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15
 
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
12
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
13
 * for more details.
17
14
 *
18
15
 * 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/>.
 
16
 * along with this library. If not, see <http://www.gnu.org/licenses/>.
 
17
 *
 
18
 * Authors: Tor Lillqvist <tml@novell.com>
20
19
 */
21
20
 
22
21
#ifndef LIBEDATASERVER_PRIVATE_H
24
23
 
25
24
#ifdef G_OS_WIN32
26
25
 
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;
 
26
const gchar *   _libedataserver_get_extensiondir        (void) G_GNUC_CONST;
 
27
const gchar *   _libedataserver_get_imagesdir           (void) G_GNUC_CONST;
 
28
const gchar *   _libedataserver_get_ui_uidir            (void) G_GNUC_CONST;
 
29
const gchar *   _libedataserver_get_credentialmoduledir (void) G_GNUC_CONST;
31
30
 
32
31
#undef E_DATA_SERVER_EXTENSIONDIR
33
32
#define E_DATA_SERVER_EXTENSIONDIR _libedataserver_get_extensiondir ()
38
37
#undef E_DATA_SERVER_UI_UIDIR
39
38
#define E_DATA_SERVER_UI_UIDIR _libedataserver_get_ui_uidir ()
40
39
 
 
40
#undef E_DATA_SERVER_CREDENTIALMODULEDIR
 
41
#define E_DATA_SERVER_CREDENTIALMODULEDIR _libedataserver_get_credentialmoduledir ()
 
42
 
41
43
#endif  /* G_OS_WIN32 */
42
44
 
43
45
#endif  /* LIBEDATASERVER_PRIVATE_H */