ECMSProvider.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 MSPROVIDER_H
  18. #define MSPROVIDER_H
  19. #include <kopano/zcdefs.h>
  20. #include <kopano/ECUnknown.h>
  21. #include "WSTransport.h"
  22. #include <string>
  23. class ECMSProvider _kc_final : public ECUnknown {
  24. protected:
  25. ECMSProvider(ULONG ulFlags, const char *szClassName);
  26. virtual ~ECMSProvider();
  27. public:
  28. static HRESULT Create(ULONG ulFlags, ECMSProvider **lppECMSProvider);
  29. virtual HRESULT QueryInterface(REFIID refiid, void **lppInterface) _kc_override;
  30. virtual HRESULT Shutdown(ULONG * lpulFlags);
  31. virtual HRESULT Logon(LPMAPISUP lpMAPISup, ULONG ulUIParam, LPTSTR lpszProfileName, ULONG cbEntryID, LPENTRYID lpEntryID, ULONG ulFlags, LPCIID lpInterface, ULONG *lpcbSpoolSecurity, LPBYTE *lppbSpoolSecurity, LPMAPIERROR *lppMAPIError, LPMSLOGON *lppMSLogon, LPMDB *lppMDB);
  32. virtual HRESULT SpoolerLogon(LPMAPISUP lpMAPISup, ULONG ulUIParam, LPTSTR lpszProfileName, ULONG cbEntryID, LPENTRYID lpEntryID, ULONG ulFlags, LPCIID lpInterface, ULONG lpcbSpoolSecurity, LPBYTE lppbSpoolSecurity, LPMAPIERROR *lppMAPIError, LPMSLOGON *lppMSLogon, LPMDB *lppMDB);
  33. virtual HRESULT CompareStoreIDs(ULONG cbEntryID1, LPENTRYID lpEntryID1, ULONG cbEntryID2, LPENTRYID lpEntryID2, ULONG ulFlags, ULONG *lpulResult);
  34. private:
  35. static HRESULT LogonByEntryID(WSTransport **lppTransport, sGlobalProfileProps *lpsProfileProps, ULONG cbEntryID, LPENTRYID lpEntryID);
  36. class xMSProvider _kc_final : public IMSProvider {
  37. #include <kopano/xclsfrag/IUnknown.hpp>
  38. #include <kopano/xclsfrag/IMSProvider.hpp>
  39. } m_xMSProvider;
  40. ULONG m_ulFlags;
  41. std::string m_strLastUser;
  42. std::string m_strLastPassword;
  43. };
  44. #endif // MSPROVIDER_H