123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- /*
- * Copyright 2005 - 2016 Zarafa and its licensors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- #ifndef __M4L_MAPIX_H_
- #define __M4L_MAPIX_H_
- #define MAPIX_H
- #include <kopano/zcdefs.h>
- #include <kopano/platform.h>
- /* Include common MAPI header files if they haven't been already. */
- #include <mapidefs.h>
- #include <mapicode.h>
- #include <mapiguid.h>
- #include <mapitags.h>
- /* Forward interface declarations */
- class IProfAdmin;
- class IMsgServiceAdmin;
- class IMAPISession;
- typedef IProfAdmin* LPPROFADMIN;
- typedef IMsgServiceAdmin* LPSERVICEADMIN;
- typedef IMAPISession* LPMAPISESSION;
- /* uhhh... already in mapi.h ? */
- /* MAPILogon() flags. */
- //#define MAPI_LOGON_UI 0x00000001 /* Display logon UI */
- //#define MAPI_NEW_SESSION 0x00000002 /* Don't use shared session */
- #define MAPI_ALLOW_OTHERS 0x00000008 /* Make this a shared session */
- #define MAPI_EXPLICIT_PROFILE 0x00000010 /* Don't use default profile */
- //#define MAPI_EXTENDED 0x00000020 /* Extended MAPI Logon */
- //#define MAPI_FORCE_DOWNLOAD 0x00001000 /* Get new mail before return */
- #define MAPI_SERVICE_UI_ALWAYS 0x00002000 /* Do logon UI in all providers */
- #define MAPI_NO_MAIL 0x00008000 /* Do not activate transports */
- /* #define MAPI_NT_SERVICE 0x00010000 Allow logon from an NT service */
- /* #ifndef MAPI_PASSWORD_UI */
- /* #define MAPI_PASSWORD_UI 0x00020000 /\* Display password UI only *\/ */
- /* #endif */
- #define MAPI_TIMEOUT_SHORT 0x00100000 /* Minimal wait for logon resources */
- #define MAPI_SIMPLE_DEFAULT (MAPI_LOGON_UI | MAPI_FORCE_DOWNLOAD | MAPI_ALLOW_OTHERS)
- #define MAPI_SIMPLE_EXPLICIT (MAPI_NEW_SESSION | MAPI_FORCE_DOWNLOAD | MAPI_EXPLICIT_PROFILE)
- /* Structure passed to MAPIInitialize(), and its ulFlags values */
- struct MAPIINIT_0 {
- ULONG ulVersion;
- ULONG ulFlags;
- };
- typedef struct MAPIINIT_0 *LPMAPIINIT_0;
- typedef MAPIINIT_0 MAPIINIT;
- typedef MAPIINIT *LPMAPIINIT;
- #define MAPI_INIT_VERSION 0
- #define MAPI_MULTITHREAD_NOTIFICATIONS 0x00000001
- /* Reserved for MAPI 0x40000000 */
- #define MAPI_NT_SERVICE 0x00010000 /* Use from NT service */
- /* MAPI base functions */
- extern "C" {
- typedef HRESULT (MAPIINITIALIZE)(LPVOID lpMapiInit);
- typedef MAPIINITIALIZE* LPMAPIINITIALIZE;
- typedef void (MAPIUNINITIALIZE)(void);
- typedef MAPIUNINITIALIZE* LPMAPIUNINITIALIZE;
- extern _kc_export MAPIINITIALIZE MAPIInitialize;
- extern _kc_export MAPIUNINITIALIZE MAPIUninitialize;
- /* Extended MAPI Logon function */
- typedef HRESULT (MAPILOGONEX)(
- ULONG ulUIParam,
- LPTSTR lpszProfileName,
- LPTSTR lpszPassword,
- ULONG ulFlags,
- LPMAPISESSION* lppSession
- );
- typedef MAPILOGONEX* LPMAPILOGONEX;
- extern _kc_export MAPILOGONEX MAPILogonEx;
- typedef SCODE (MAPIALLOCATEBUFFER)(
- ULONG cbSize,
- LPVOID * lppBuffer
- );
- typedef SCODE (MAPIALLOCATEMORE)(
- ULONG cbSize,
- LPVOID lpObject,
- LPVOID * lppBuffer
- );
- typedef ULONG (MAPIFREEBUFFER)(
- LPVOID lpBuffer
- );
- typedef MAPIALLOCATEBUFFER *LPMAPIALLOCATEBUFFER;
- typedef MAPIALLOCATEMORE *LPMAPIALLOCATEMORE;
- typedef MAPIFREEBUFFER *LPMAPIFREEBUFFER;
- extern _kc_export MAPIALLOCATEBUFFER MAPIAllocateBuffer;
- extern _kc_export MAPIALLOCATEMORE MAPIAllocateMore;
- extern _kc_export MAPIFREEBUFFER MAPIFreeBuffer;
- typedef HRESULT (MAPIADMINPROFILES)(
- ULONG ulFlags,
- LPPROFADMIN *lppProfAdmin
- );
- typedef MAPIADMINPROFILES *LPMAPIADMINPROFILES;
- extern _kc_export MAPIADMINPROFILES MAPIAdminProfiles;
- } // EXTERN "C"
- /*
- * IMAPISession Interface
- */
- /* Flags for OpenEntry and others */
- /*#define MAPI_MODIFY ((ULONG) 0x00000001) */
- /* Flags for Logoff */
- #define MAPI_LOGOFF_SHARED 0x00000001 /* Close all shared sessions */
- #define MAPI_LOGOFF_UI 0x00000002 /* It's OK to present UI */
- /* Flags for SetDefaultStore. They are mutually exclusive. */
- #define MAPI_DEFAULT_STORE 0x00000001 /* for incoming messages */
- #define MAPI_SIMPLE_STORE_TEMPORARY 0x00000002 /* for simple MAPI and CMC */
- #define MAPI_SIMPLE_STORE_PERMANENT 0x00000003 /* for simple MAPI and CMC */
- #define MAPI_PRIMARY_STORE 0x00000004 /* Used by some clients */
- #define MAPI_SECONDARY_STORE 0x00000005 /* Used by some clients */
- /* Flags for ShowForm. */
- #define MAPI_POST_MESSAGE 0x00000001 /* Selects post/send semantics */
- #define MAPI_NEW_MESSAGE 0x00000002 /* Governs copying during submission */
- class IMAPISession : public virtual IUnknown {
- public:
- // virtual ~IMAPISession() = 0;
- virtual HRESULT GetLastError(HRESULT hResult, ULONG ulFlags, LPMAPIERROR* lppMAPIError) = 0;
- virtual HRESULT GetMsgStoresTable(ULONG ulFlags, LPMAPITABLE* lppTable) = 0;
- virtual HRESULT OpenMsgStore(ULONG ulUIParam, ULONG cbEntryID, LPENTRYID lpEntryID, LPCIID lpInterface, ULONG ulFlags, LPMDB* lppMDB) = 0;
- virtual HRESULT OpenAddressBook(ULONG ulUIParam, LPCIID lpInterface, ULONG ulFlags, LPADRBOOK* lppAdrBook) = 0;
- virtual HRESULT OpenProfileSection(LPMAPIUID lpUID, LPCIID lpInterface, ULONG ulFlags, LPPROFSECT* lppProfSect) = 0;
- virtual HRESULT GetStatusTable(ULONG ulFlags, LPMAPITABLE* lppTable) = 0;
- virtual HRESULT OpenEntry(ULONG cbEntryID, LPENTRYID lpEntryID, LPCIID lpInterface, ULONG ulFlags, ULONG* lpulObjType,
- LPUNKNOWN* lppUnk) = 0;
- virtual HRESULT CompareEntryIDs(ULONG cbEntryID1, LPENTRYID lpEntryID1, ULONG cbEntryID2, LPENTRYID lpEntryID2, ULONG ulFlags,
- ULONG* lpulResult) = 0;
- virtual HRESULT Advise(ULONG cbEntryID, LPENTRYID lpEntryID, ULONG ulEventMask, LPMAPIADVISESINK lpAdviseSink, ULONG* lpulConnection) = 0;
- virtual HRESULT Unadvise(ULONG ulConnection) = 0;
- virtual HRESULT MessageOptions(ULONG ulUIParam, ULONG ulFlags, LPTSTR lpszAdrType, LPMESSAGE lpMessage) = 0;
- virtual HRESULT QueryDefaultMessageOpt(LPTSTR lpszAdrType, ULONG ulFlags, ULONG* lpcValues, LPSPropValue* lppOptions) = 0;
- virtual HRESULT EnumAdrTypes(ULONG ulFlags, ULONG* lpcAdrTypes, LPTSTR** lpppszAdrTypes) = 0;
- virtual HRESULT QueryIdentity(ULONG* lpcbEntryID, LPENTRYID* lppEntryID) = 0;
- virtual HRESULT Logoff(ULONG ulUIParam, ULONG ulFlags, ULONG ulReserved) = 0;
- virtual HRESULT SetDefaultStore(ULONG ulFlags, ULONG cbEntryID, LPENTRYID lpEntryID) = 0;
- virtual HRESULT AdminServices(ULONG ulFlags, LPSERVICEADMIN* lppServiceAdmin) = 0;
- virtual HRESULT ShowForm(ULONG ulUIParam, LPMDB lpMsgStore, LPMAPIFOLDER lpParentFolder, LPCIID lpInterface, ULONG ulMessageToken,
- LPMESSAGE lpMessageSent, ULONG ulFlags, ULONG ulMessageStatus, ULONG ulMessageFlags, ULONG ulAccess,
- LPSTR lpszMessageClass) = 0;
- virtual HRESULT PrepareForm(LPCIID lpInterface, LPMESSAGE lpMessage, ULONG* lpulMessageToken) = 0;
- };
- /*DECLARE_MAPI_INTERFACE_PTR(IMAPISession, LPMAPISESSION);*/
- /* IAddrBook Interface ----------------------------------------------------- */
- class IAddrBook : public virtual IMAPIProp {
- public:
- // virtual ~IAddrBook() = 0;
- virtual HRESULT OpenEntry(ULONG cbEntryID, LPENTRYID lpEntryID, LPCIID lpInterface, ULONG ulFlags, ULONG * lpulObjType,
- LPUNKNOWN * lppUnk) = 0;
- virtual HRESULT CompareEntryIDs(ULONG cbEntryID1, LPENTRYID lpEntryID1, ULONG cbEntryID2, LPENTRYID lpEntryID2, ULONG ulFlags,
- ULONG* lpulResult) = 0;
- virtual HRESULT Advise(ULONG cbEntryID, LPENTRYID lpEntryID, ULONG ulEventMask, LPMAPIADVISESINK lpAdviseSink, ULONG* lpulConnection) = 0;
- virtual HRESULT Unadvise(ULONG ulConnection) = 0;
- virtual HRESULT CreateOneOff(LPTSTR lpszName, LPTSTR lpszAdrType, LPTSTR lpszAddress, ULONG ulFlags, ULONG* lpcbEntryID,
- LPENTRYID* lppEntryID) = 0;
- virtual HRESULT NewEntry(ULONG ulUIParam, ULONG ulFlags, ULONG cbEIDContainer, LPENTRYID lpEIDContainer, ULONG cbEIDNewEntryTpl,
- LPENTRYID lpEIDNewEntryTpl, ULONG* lpcbEIDNewEntry, LPENTRYID* lppEIDNewEntry) = 0;
- virtual HRESULT ResolveName(ULONG ulUIParam, ULONG ulFlags, LPTSTR lpszNewEntryTitle, LPADRLIST lpAdrList) = 0;
- virtual HRESULT Address(ULONG* lpulUIParam, LPADRPARM lpAdrParms, LPADRLIST* lppAdrList) = 0;
- virtual HRESULT Details(ULONG* lpulUIParam, LPFNDISMISS lpfnDismiss, LPVOID lpvDismissContext, ULONG cbEntryID, LPENTRYID lpEntryID,
- LPFNBUTTON lpfButtonCallback, LPVOID lpvButtonContext, LPTSTR lpszButtonText, ULONG ulFlags) = 0;
- virtual HRESULT RecipOptions(ULONG ulUIParam, ULONG ulFlags, LPADRENTRY lpRecip) = 0;
- virtual HRESULT QueryDefaultRecipOpt(LPTSTR lpszAdrType, ULONG ulFlags, ULONG* lpcValues, LPSPropValue* lppOptions) = 0;
- virtual HRESULT GetPAB(ULONG* lpcbEntryID, LPENTRYID* lppEntryID) = 0;
- virtual HRESULT SetPAB(ULONG cbEntryID, LPENTRYID lpEntryID) = 0;
- virtual HRESULT GetDefaultDir(ULONG* lpcbEntryID, LPENTRYID* lppEntryID) = 0;
- virtual HRESULT SetDefaultDir(ULONG cbEntryID, LPENTRYID lpEntryID) = 0;
- virtual HRESULT GetSearchPath(ULONG ulFlags, LPSRowSet* lppSearchPath) = 0;
- virtual HRESULT SetSearchPath(ULONG ulFlags, LPSRowSet lpSearchPath) = 0;
- virtual HRESULT PrepareRecips(ULONG ulFlags, const SPropTagArray *lpPropTagArray, LPADRLIST lpRecipList) = 0;
- };
- typedef IAddrBook* LPADRBOOK;
- /*
- * IProfAdmin Interface
- */
- #define MAPI_DEFAULT_SERVICES 0x00000001
- class IProfAdmin : public virtual IUnknown {
- public:
- // virtual ~IProfAdmin() = 0;
- virtual HRESULT GetLastError(HRESULT hResult, ULONG ulFlags, LPMAPIERROR* lppMAPIError) = 0;
- virtual HRESULT GetProfileTable(ULONG ulFlags, LPMAPITABLE* lppTable) = 0;
- virtual HRESULT CreateProfile(LPTSTR lpszProfileName, LPTSTR lpszPassword, ULONG ulUIParam, ULONG ulFlags) = 0;
- virtual HRESULT DeleteProfile(LPTSTR lpszProfileName, ULONG ulFlags) = 0;
- virtual HRESULT ChangeProfilePassword(LPTSTR lpszProfileName, LPTSTR lpszOldPassword, LPTSTR lpszNewPassword, ULONG ulFlags) = 0;
- virtual HRESULT CopyProfile(LPTSTR lpszOldProfileName, LPTSTR lpszOldPassword, LPTSTR lpszNewProfileName, ULONG ulUIParam,
- ULONG ulFlags) = 0;
- virtual HRESULT RenameProfile(LPTSTR lpszOldProfileName, LPTSTR lpszOldPassword, LPTSTR lpszNewProfileName, ULONG ulUIParam,
- ULONG ulFlags) = 0;
- virtual HRESULT SetDefaultProfile(LPTSTR lpszProfileName, ULONG ulFlags) = 0;
- virtual HRESULT AdminServices(LPTSTR lpszProfileName, LPTSTR lpszPassword, ULONG ulUIParam, ULONG ulFlags,
- LPSERVICEADMIN* lppServiceAdmin) = 0;
- };
- /*
- * IMsgServiceAdmin Interface
- */
- /* Values for PR_RESOURCE_FLAGS in message service table */
- #define SERVICE_DEFAULT_STORE 0x00000001
- #define SERVICE_SINGLE_COPY 0x00000002
- #define SERVICE_CREATE_WITH_STORE 0x00000004
- #define SERVICE_PRIMARY_IDENTITY 0x00000008
- #define SERVICE_NO_PRIMARY_IDENTITY 0x00000020
- class IMsgServiceAdmin : public virtual IUnknown {
- public:
- // virtual ~IMsgServiceAdmin() = 0;
- virtual HRESULT GetLastError(HRESULT hResult, ULONG ulFlags, LPMAPIERROR* lppMAPIError) = 0;
- virtual HRESULT GetMsgServiceTable(ULONG ulFlags, LPMAPITABLE* lppTable) = 0;
- virtual HRESULT CreateMsgService(LPTSTR lpszService, LPTSTR lpszDisplayName, ULONG ulUIParam, ULONG ulFlags) = 0;
- virtual HRESULT DeleteMsgService(LPMAPIUID lpUID) = 0;
- virtual HRESULT CopyMsgService(LPMAPIUID lpUID, LPTSTR lpszDisplayName, LPCIID lpInterfaceToCopy, LPCIID lpInterfaceDst,
- LPVOID lpObjectDst, ULONG ulUIParam, ULONG ulFlags) = 0;
- virtual HRESULT RenameMsgService(LPMAPIUID lpUID, ULONG ulFlags, LPTSTR lpszDisplayName) = 0;
- virtual HRESULT ConfigureMsgService(LPMAPIUID lpUID, ULONG ulUIParam, ULONG ulFlags, ULONG cValues, LPSPropValue lpProps) = 0;
- virtual HRESULT OpenProfileSection(LPMAPIUID lpUID, LPCIID lpInterface, ULONG ulFlags, LPPROFSECT* lppProfSect) = 0;
- virtual HRESULT MsgServiceTransportOrder(ULONG cUID, LPMAPIUID lpUIDList, ULONG ulFlags) = 0;
- virtual HRESULT AdminProviders(LPMAPIUID lpUID, ULONG ulFlags, LPPROVIDERADMIN* lppProviderAdmin) = 0;
- virtual HRESULT SetPrimaryIdentity(LPMAPIUID lpUID, ULONG ulFlags) = 0;
- virtual HRESULT GetProviderTable(ULONG ulFlags, LPMAPITABLE* lppTable) = 0;
- };
- #endif /* MAPIX_H */
|