1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /*
- * 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 ECXPPROVIDER_H
- #define ECXPPROVIDER_H
- #include <kopano/zcdefs.h>
- #include <kopano/ECUnknown.h>
- class ECXPProvider _kc_final : public ECUnknown {
- protected:
- ECXPProvider();
- virtual ~ECXPProvider();
- public:
- static HRESULT Create(ECXPProvider **lppECXPProvider);
- virtual HRESULT QueryInterface(REFIID refiid, void **lppInterface) _kc_override;
- virtual HRESULT Shutdown(ULONG * lpulFlags);
- virtual HRESULT TransportLogon(LPMAPISUP lpMAPISup, ULONG ulUIParam, LPTSTR lpszProfileName, ULONG *lpulFlags, LPMAPIERROR *lppMAPIError, LPXPLOGON *lppXPLogon);
- class xXPProvider _kc_final : public IXPProvider {
- #include <kopano/xclsfrag/IUnknown.hpp>
- // <kopano/xclsfrag/IXPProvider.hpp>
- virtual HRESULT __stdcall Shutdown(ULONG *flags) _kc_override;
- virtual HRESULT __stdcall TransportLogon(LPMAPISUP, ULONG ui_param, LPTSTR profname, ULONG *flags, LPMAPIERROR *err, LPXPLOGON *) _kc_override;
- } m_xXPProvider;
-
- SPropValue *m_lpIdentityProps = nullptr;
- };
- #endif // #ifndef ECXPPROVIDER_H
|