mapicode.h 5.72 KB
Newer Older
Aric Stewart's avatar
Aric Stewart committed
1
/*
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
 * Status codes returned by MAPI
 *
 * Copyright (C) 2002 Aric Stewart
 *
 * This library 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.1 of the License, or (at your option) any later version.
 *
 * This library 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 this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Aric Stewart's avatar
Aric Stewart committed
19 20 21 22 23
 */

#ifndef MAPICODE_H
#define MAPICODE_H

24
#include <winerror.h>
25

Aric Stewart's avatar
Aric Stewart committed
26
#define MAKE_MAPI_SCODE(sev,fac,code) \
Jon Griffiths's avatar
Jon Griffiths committed
27
    ((SCODE)(((ULONG)(sev)<<31)|((ULONG)(fac)<<16)|((ULONG)(code))))
Aric Stewart's avatar
Aric Stewart committed
28

Jon Griffiths's avatar
Jon Griffiths committed
29 30
#define MAKE_MAPI_E(e) (MAKE_MAPI_SCODE(1,FACILITY_ITF,(e)))
#define MAKE_MAPI_S(e) (MAKE_MAPI_SCODE(0,FACILITY_ITF,(e)))
Aric Stewart's avatar
Aric Stewart committed
31

32 33 34 35
#ifndef SUCCESS_SUCCESS
#define SUCCESS_SUCCESS     0L
#endif

Jon Griffiths's avatar
Jon Griffiths committed
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
/* Errors */
#define MAPI_E_ACCOUNT_DISABLED            ((SCODE)0x80040124)
#define MAPI_E_AMBIGUOUS_RECIP             ((SCODE)0x80040700)
#define MAPI_E_BAD_CHARWIDTH               ((SCODE)0x80040103)
#define MAPI_E_BAD_COLUMN                  ((SCODE)0x80040118)
#define MAPI_E_BAD_VALUE                   ((SCODE)0x80040301)
#define MAPI_E_BUSY                        ((SCODE)0x8004010B)
#define MAPI_E_CALL_FAILED                 E_FAIL
#define MAPI_E_CANCEL                      ((SCODE)0x80040501)
#define MAPI_E_COLLISION                   ((SCODE)0x80040604)
#define MAPI_E_COMPUTED                    ((SCODE)0x8004011A)
#define MAPI_E_CORRUPT_DATA                ((SCODE)0x8004011B)
#define MAPI_E_CORRUPT_STORE               ((SCODE)0x80040600)
#define MAPI_E_DECLINE_COPY                ((SCODE)0x80040306)
#define MAPI_E_DISK_ERROR                  ((SCODE)0x80040116)
#define MAPI_E_END_OF_SESSION              ((SCODE)0x80040200)
#define MAPI_E_EXTENDED_ERROR              ((SCODE)0x80040119)
#define MAPI_E_FAILONEPROVIDER             ((SCODE)0x8004011D)
#define MAPI_E_FOLDER_CYCLE                ((SCODE)0x8004060B)
#define MAPI_E_HAS_FOLDERS                 ((SCODE)0x80040609)
#define MAPI_E_HAS_MESSAGES                ((SCODE)0x8004060A)
#define MAPI_E_INTERFACE_NOT_SUPPORTED     E_NOINTERFACE
#define MAPI_E_INVALID_ACCESS_TIME         ((SCODE)0x80040123)
#define MAPI_E_INVALID_BOOKMARK            ((SCODE)0x80040405)
#define MAPI_E_INVALID_ENTRYID             ((SCODE)0x80040107)
#define MAPI_E_INVALID_OBJECT              ((SCODE)0x80040108)
#define MAPI_E_INVALID_PARAMETER           E_INVALIDARG
#define MAPI_E_INVALID_TYPE                ((SCODE)0x80040302)
#define MAPI_E_INVALID_WORKSTATION_ACCOUNT ((SCODE)0x80040122)
#define MAPI_E_LOGON_FAILED                ((SCODE)0x80040111)
#define MAPI_E_MISSING_REQUIRED_COLUMN     ((SCODE)0x80040202)
#define MAPI_E_NETWORK_ERROR               ((SCODE)0x80040115)
#define MAPI_E_NO_ACCESS                   E_ACCESSDENIED
#define MAPI_E_NON_STANDARD                ((SCODE)0x80040606)
#define MAPI_E_NO_RECIPIENTS               ((SCODE)0x80040607)
#define MAPI_E_NO_SUPPORT                  ((SCODE)0x80040102)
#define MAPI_E_NO_SUPPRESS                 ((SCODE)0x80040602)
#define MAPI_E_NOT_ENOUGH_DISK             ((SCODE)0x8004010D)
#define MAPI_E_NOT_ENOUGH_MEMORY           E_OUTOFMEMORY
#define MAPI_E_NOT_ENOUGH_RESOURCES        ((SCODE)0x8004010E)
#define MAPI_E_NOT_FOUND                   ((SCODE)0x8004010F)
#define MAPI_E_NOT_INITIALIZED             ((SCODE)0x80040605)
#define MAPI_E_NOT_IN_QUEUE                ((SCODE)0x80040601)
#define MAPI_E_NOT_ME                      ((SCODE)0x80040502)
#define MAPI_E_OBJECT_CHANGED              ((SCODE)0x80040109)
#define MAPI_E_OBJECT_DELETED              ((SCODE)0x8004010A)
#define MAPI_E_PASSWORD_CHANGE_REQUIRED    ((SCODE)0x80040120)
#define MAPI_E_PASSWORD_EXPIRED            ((SCODE)0x80040121)
#define MAPI_E_SESSION_LIMIT               ((SCODE)0x80040112)
#define MAPI_E_STRING_TOO_LONG             ((SCODE)0x80040105)
#define MAPI_E_SUBMITTED                   ((SCODE)0x80040608)
#define MAPI_E_TABLE_EMPTY                 ((SCODE)0x80040402)
#define MAPI_E_TABLE_TOO_BIG               ((SCODE)0x80040403)
#define MAPI_E_TIMEOUT                     ((SCODE)0x80040401)
#define MAPI_E_TOO_BIG                     ((SCODE)0x80040305)
#define MAPI_E_TOO_COMPLEX                 ((SCODE)0x80040117)
#define MAPI_E_TYPE_NO_SUPPORT             ((SCODE)0x80040303)
#define MAPI_E_UNABLE_TO_ABORT             ((SCODE)0x80040114)
#define MAPI_E_UNABLE_TO_COMPLETE          ((SCODE)0x80040400)
#define MAPI_E_UNCONFIGURED                ((SCODE)0x8004011C)
#define MAPI_E_UNEXPECTED_ID               ((SCODE)0x80040307)
#define MAPI_E_UNEXPECTED_TYPE             ((SCODE)0x80040304)
#define MAPI_E_UNKNOWN_CPID                ((SCODE)0x8004011E)
#define MAPI_E_UNKNOWN_ENTRYID             ((SCODE)0x80040201)
#define MAPI_E_UNKNOWN_FLAGS               ((SCODE)0x80040106)
#define MAPI_E_UNKNOWN_LCID                ((SCODE)0x8004011F)
#define MAPI_E_USER_CANCEL                 ((SCODE)0x80040113)
#define MAPI_E_VERSION                     ((SCODE)0x80040110)
#define MAPI_E_WAIT                        ((SCODE)0x80040500)
Aric Stewart's avatar
Aric Stewart committed
105

Jon Griffiths's avatar
Jon Griffiths committed
106 107 108 109 110 111 112
/* Warnings */
#define MAPI_W_APPROX_COUNT                ((SCODE)0x00040482)
#define MAPI_W_CANCEL_MESSAGE              ((SCODE)0x00040580)
#define MAPI_W_ERRORS_RETURNED             ((SCODE)0x00040380)
#define MAPI_W_NO_SERVICE                  ((SCODE)0x00040203)
#define MAPI_W_PARTIAL_COMPLETION          ((SCODE)0x00040680)
#define MAPI_W_POSITION_CHANGED            ((SCODE)0x00040481)
Aric Stewart's avatar
Aric Stewart committed
113

Jon Griffiths's avatar
Jon Griffiths committed
114
#endif /* MAPICODE_H */