This file is indexed.

/usr/include/evolution-data-server/mapi/e-mapi-fast-transfer.h is in libexchangemapi-1.0-dev 3.10.2-0ubuntu3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 *
 * Authors:
 *    Milan Crha <mcrha@redhat.com>
 *
 * Copyright (C) 2011 Red Hat, Inc. (www.redhat.com)
 *
 */

#ifndef E_MAPI_FAST_TRANSFER_H
#define E_MAPI_FAST_TRANSFER_H

#include <glib.h>
#include <glib-object.h>
#include <gio/gio.h>

#include <libmapi/libmapi.h>
#include "e-mapi-connection.h"

G_BEGIN_DECLS

enum MAPISTATUS		e_mapi_fast_transfer_objects	(EMapiConnection *conn,
							 TALLOC_CTX *mem_ctx,
							 mapi_object_t *obj_folder,
							 mapi_id_array_t *ids,
							 TransferObjectCB cb,
							 gpointer cb_user_data,
							 GCancellable *cancellable,
							 GError **perror);

typedef enum {
	E_MAPI_FAST_TRANSFER_FLAG_NONE		= 0,
	E_MAPI_FAST_TRANSFER_FLAG_ATTACHMENTS	= 1 << 0,
	E_MAPI_FAST_TRANSFER_FLAG_RECIPIENTS	= 1 << 1,
	E_MAPI_FAST_TRANSFER_FLAG_ALL		= E_MAPI_FAST_TRANSFER_FLAG_ATTACHMENTS | E_MAPI_FAST_TRANSFER_FLAG_RECIPIENTS
} EMapiFastTransferFlags;

enum MAPISTATUS		e_mapi_fast_transfer_object	(EMapiConnection *conn,
							 TALLOC_CTX *mem_ctx,
							 mapi_object_t *object,
							 guint32 transfer_flags, /* bit OR of EMapiFastTransferFlags */
							 TransferObjectCB cb,
							 gpointer cb_user_data,
							 GCancellable *cancellable,
							 GError **perror);

enum MAPISTATUS		e_mapi_fast_transfer_properties	(EMapiConnection *conn,
							 TALLOC_CTX *mem_ctx,
							 mapi_object_t *object,
							 struct SPropTagArray *tags,
							 TransferObjectCB cb,
							 gpointer cb_user_data,
							 GCancellable *cancellable,
							 GError **perror);

G_END_DECLS

#endif /* E_MAPI_FAST_TRANSFER_H */