12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * 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 ECABCONTAINER_H
- #define ECABCONTAINER_H
- #include <kopano/zcdefs.h>
- #include <kopano/Util.h>
- #include "IECExportAddressbookChanges.h"
- #include "IECImportAddressbookChanges.h"
- #include "ECABLogon.h"
- #include "ECABProp.h"
- class ECABContainer : public ECABProp {
- protected:
- ECABContainer(void* lpProvider, ULONG ulObjType, BOOL fModify, const char *szClassName);
- virtual ~ECABContainer();
- public:
- static HRESULT Create(void* lpProvider, ULONG ulObjType, BOOL fModify, ECABContainer **lppABContainer);
- static HRESULT DefaultABContainerGetProp(ULONG ulPropTag, void* lpProvider, ULONG ulFLags, LPSPropValue lpsPropValue, void *lpParam, void *lpBase);
- static HRESULT TableRowGetProp(void* lpProvider, struct propVal *lpsPropValSrc, LPSPropValue lpsPropValDst, void **lpBase, ULONG ulType);
- // IUnknown
- virtual HRESULT QueryInterface(REFIID refiid, void **lppInterface) _kc_override;
- // IABContainer
- virtual HRESULT CreateEntry(ULONG cbEntryID, LPENTRYID lpEntryID, ULONG ulCreateFlags, LPMAPIPROP* lppMAPIPropEntry);
- virtual HRESULT CopyEntries(LPENTRYLIST lpEntries, ULONG ulUIParam, LPMAPIPROGRESS lpProgress, ULONG ulFlags);
- virtual HRESULT DeleteEntries(LPENTRYLIST lpEntries, ULONG ulFlags);
- virtual HRESULT ResolveNames(const SPropTagArray *lpPropTagArray, ULONG ulFlags, LPADRLIST lpAdrList, LPFlagList lpFlagList);
- // From IMAPIContainer
- virtual HRESULT GetContentsTable(ULONG ulFlags, LPMAPITABLE *lppTable);
- virtual HRESULT GetHierarchyTable(ULONG ulFlags, LPMAPITABLE *lppTable);
- virtual HRESULT OpenEntry(ULONG cbEntryID, LPENTRYID lpEntryID, LPCIID lpInterface, ULONG ulFlags, ULONG *lpulObjType, LPUNKNOWN *lppUnk);
- virtual HRESULT SetSearchCriteria(LPSRestriction lpRestriction, LPENTRYLIST lpContainerList, ULONG ulSearchFlags);
- virtual HRESULT GetSearchCriteria(ULONG ulFlags, LPSRestriction *lppRestriction, LPENTRYLIST *lppContainerList, ULONG *lpulSearchState);
- // From IMAPIProp
- virtual HRESULT OpenProperty(ULONG ulPropTag, LPCIID lpiid, ULONG ulInterfaceOptions, ULONG ulFlags, LPUNKNOWN *lppUnk);
- virtual HRESULT CopyTo(ULONG ciidExclude, LPCIID rgiidExclude, const SPropTagArray *lpExcludeProps, ULONG ulUIParam, LPMAPIPROGRESS lpProgress, LPCIID lpInterface, LPVOID lpDestObj, ULONG ulFlags, LPSPropProblemArray *lppProblems);
- virtual HRESULT CopyProps(const SPropTagArray *lpIncludeProps, ULONG ulUIParam, LPMAPIPROGRESS lpProgress, LPCIID lpInterface, LPVOID lpDestObj, ULONG ulFlags, LPSPropProblemArray *lppProblems);
- class xABContainer _kc_final : public IABContainer {
- #include <kopano/xclsfrag/IUnknown.hpp>
- #include <kopano/xclsfrag/IABContainer.hpp>
- #include <kopano/xclsfrag/IMAPIContainer.hpp>
- #include <kopano/xclsfrag/IMAPIProp.hpp>
- } m_xABContainer;
- private:
- IECImportAddressbookChanges *m_lpImporter = nullptr;
- ALLOC_WRAP_FRIEND;
- };
- #endif
|