ECXPProvider.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright 2005 - 2016 Zarafa and its licensors
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU Affero General Public License, version 3,
  6. * as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU Affero General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU Affero General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. */
  17. #ifndef ECXPPROVIDER_H
  18. #define ECXPPROVIDER_H
  19. #include <kopano/zcdefs.h>
  20. #include <kopano/ECUnknown.h>
  21. class ECXPProvider _kc_final : public ECUnknown {
  22. protected:
  23. ECXPProvider();
  24. virtual ~ECXPProvider();
  25. public:
  26. static HRESULT Create(ECXPProvider **lppECXPProvider);
  27. virtual HRESULT QueryInterface(REFIID refiid, void **lppInterface) _kc_override;
  28. virtual HRESULT Shutdown(ULONG * lpulFlags);
  29. virtual HRESULT TransportLogon(LPMAPISUP lpMAPISup, ULONG ulUIParam, LPTSTR lpszProfileName, ULONG *lpulFlags, LPMAPIERROR *lppMAPIError, LPXPLOGON *lppXPLogon);
  30. class xXPProvider _kc_final : public IXPProvider {
  31. #include <kopano/xclsfrag/IUnknown.hpp>
  32. // <kopano/xclsfrag/IXPProvider.hpp>
  33. virtual HRESULT __stdcall Shutdown(ULONG *flags) _kc_override;
  34. virtual HRESULT __stdcall TransportLogon(LPMAPISUP, ULONG ui_param, LPTSTR profname, ULONG *flags, LPMAPIERROR *err, LPXPLOGON *) _kc_override;
  35. } m_xXPProvider;
  36. SPropValue *m_lpIdentityProps = nullptr;
  37. };
  38. #endif // #ifndef ECXPPROVIDER_H