123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * 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 ECIMPORTHIERARCHYCHANGESPROXY_H
- #define ECIMPORTHIERARCHYCHANGESPROXY_H
- #include <kopano/zcdefs.h>
- #include <edkmdb.h>
- class ECImportHierarchyChangesProxy _kc_final :
- public IExchangeImportHierarchyChanges {
- private:
- ULONG m_cRef;
- zval *m_lpObj;
- #ifdef ZTS
- TSRMLS_D;
- #endif
- public:
- ECImportHierarchyChangesProxy(zval *objTarget TSRMLS_DC);
- ~ECImportHierarchyChangesProxy();
- virtual ULONG __stdcall AddRef(void) _kc_override;
- virtual ULONG __stdcall Release(void) _kc_override;
- virtual HRESULT __stdcall QueryInterface(REFIID iid, void **lpvoid) _kc_override;
-
- virtual HRESULT __stdcall GetLastError(HRESULT hResult, ULONG ulFlags, LPMAPIERROR *lppMAPIError) _kc_override;
- virtual HRESULT __stdcall Config(LPSTREAM lpStream, ULONG ulFlags) _kc_override;
- virtual HRESULT __stdcall UpdateState(LPSTREAM lpStream) _kc_override;
- virtual HRESULT __stdcall ImportFolderChange(ULONG cValue, LPSPropValue lpPropArray) _kc_override;
- virtual HRESULT __stdcall ImportFolderDeletion(ULONG ulFlags, LPENTRYLIST lpSourceEntryList) _kc_override;
- };
- #endif
|