/usr/include/evolution-data-server/mapi/e-mapi-defs.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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | /* -*- 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:
* Suman Manjunath <msuman@novell.com>
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
*/
/* Someday, all these definitions should be pushed in libmapi/mapidefs.h */
/* NOTE: Some of the enumerations are commented out since they conflict
* with libmapi/mapidefs.h */
#ifndef E_MAPI_DEFS_H
#define E_MAPI_DEFS_H
#include <glib.h>
G_BEGIN_DECLS
/* GENERAL */
typedef enum {
olSunday = 1,
olMonday = 2,
olTuesday = 4,
olWednesday = 8,
olThursday = 16,
olFriday = 32,
olSaturday = 64
} OlDaysOfWeek;
typedef enum {
olNormal = 0,
olPersonal = 1,
olPrivate = 2,
olConfidential = 3
} OlSensitivity;
typedef enum {
olImportanceLow = 0,
olImportanceNormal = 1,
olImportanceHigh = 2
} OlImportance;
typedef enum {
olOriginator = 0,
olTo = 1,
olCC = 2,
olBCC = 3
} OlMailRecipientType;
typedef enum {
SingleAppt = 0x0400 ,
RecurAppt = 0x0401 ,
SingleMeet = 0x0402 ,
RecurMeet = 0x0403 ,
MeetReq = 0x0404 ,
RespAccept = 0x0405 ,
RespDecline = 0x0406 ,
RespTentAccept = 0x0407 ,
MeetCancel = 0x0408 ,
MeetInfoUpdate = 0x0409
} IconIndex;
/* APPOINTMENTS */
typedef enum {
olOrganizer = 0,
olRequired = 1,
olOptional = 2,
olResource = 3
} OlMeetingRecipientType;
typedef enum {
olMeetingTentative = 2,
olMeetingAccepted = 3,
olMeetingDeclined = 4
} OlMeetingResponse;
typedef enum {
olResponseNone = 0,
olResponseOrganized = 1,
olResponseTentative = 2,
olResponseAccepted = 3,
olResponseDeclined = 4,
olResponseNotResponded = 5
} OlResponseStatus;
typedef enum {
mtgEmpty = 0x00000000,
mtgRequest = 0x00000001,
mtgFull = 0x00010000,
mtgInfo = 0x00020000,
mtgOutOfDate = 0x00080000,
mtgDelegatorCopy = 0x00100000
} MeetingType;
typedef enum {
olNonMeeting = 0,
olMeeting = 1,
olMeetingReceived = 3,
olMeetingCanceled = 5
} OlMeetingStatus;
typedef enum {
asfNone = 0,
asfMeeting = 1,
asfReceived = 2,
asfCanceled = 4
} AppointmentStateFlags;
typedef enum {
olNetMeeting = 0,
olNetShow = 1,
olChat = 2
} OlNetMeetingType;
/* TASKS */
typedef enum {
olTaskNotDelegated = 0,
olTaskDelegationUnknown = 1,
olTaskDelegationAccepted = 2,
olTaskDelegationDeclined = 3
} OlTaskDelegationState;
typedef enum {
olUpdate = 2,
olFinalStatus = 3
} OlTaskRecipientType;
typedef enum {
olTaskSimple = 0,
olTaskAssign = 1,
olTaskAccept = 2,
olTaskDecline = 3
} OlTaskResponse;
typedef enum {
olApptNotRecurring = 0,
olApptMaster = 1,
olApptOccurrence = 2,
olApptException = 3
} OlRecurrenceState;
#define IPM_CONTACT "IPM.Contact"
#define IPM_DISTLIST "IPM.DistList"
#define IPM_APPOINTMENT "IPM.Appointment"
#define IPM_SCHEDULE_MEETING_PREFIX "IPM.Schedule.Meeting."
#define IPM_SCHEDULE_MEETING_REQUEST "IPM.Schedule.Meeting.Request"
#define IPM_SCHEDULE_MEETING_CANCELED "IPM.Schedule.Meeting.Canceled"
#define IPM_SCHEDULE_MEETING_RESP_PREFIX "IPM.Schedule.Meeting.Resp."
#define IPM_SCHEDULE_MEETING_RESP_POS "IPM.Schedule.Meeting.Resp.Pos"
#define IPM_SCHEDULE_MEETING_RESP_TENT "IPM.Schedule.Meeting.Resp.Tent"
#define IPM_SCHEDULE_MEETING_RESP_NEG "IPM.Schedule.Meeting.Resp.Neg"
#define IPM_TASK "IPM.Task"
#define IPM_STICKYNOTE "IPM.StickyNote"
G_END_DECLS
#endif
|