123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef ECDISTLIST
- #define ECDISTLIST
- #include <kopano/zcdefs.h>
- #include <kopano/Util.h>
- #include "ECABContainer.h"
- class ECDistList _kc_final : public ECABContainer {
- protected:
- ECDistList(void* lpProvider, BOOL fModify);
- public:
-
- static HRESULT Create(void* lpProvider, BOOL fModify, ECDistList** lppDistList);
- static HRESULT TableRowGetProp(void* lpProvider, struct propVal *lpsPropValSrc, LPSPropValue lpsPropValDst, void **lpBase, ULONG ulType);
-
- 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);
-
- virtual HRESULT QueryInterface(REFIID refiid, void **lppInterface) _kc_override;
- virtual HRESULT OpenProperty(ULONG ulPropTag, LPCIID lpiid, ULONG ulInterfaceOptions, ULONG ulFlags, LPUNKNOWN *lppUnk);
- class xDistList _kc_final : public IDistList {
- #include <kopano/xclsfrag/IUnknown.hpp>
- #include <kopano/xclsfrag/IABContainer.hpp>
- #include <kopano/xclsfrag/IMAPIContainer.hpp>
- #include <kopano/xclsfrag/IMAPIProp.hpp>
- } m_xDistList;
- ALLOC_WRAP_FRIEND;
- };
- #endif
|