/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef mozilla_mscom_IHandlerProvider_h #define mozilla_mscom_IHandlerProvider_h #include "mozilla/NotNull.h" #include "mozilla/mscom/Ptr.h" #include namespace mozilla { namespace mscom { struct IInterceptor; struct HandlerProvider { virtual STDMETHODIMP GetHandler(NotNull aHandlerClsid) = 0; virtual STDMETHODIMP GetHandlerPayloadSize(NotNull aInterceptor, NotNull aOutPayloadSize) = 0; virtual STDMETHODIMP WriteHandlerPayload(NotNull aInterceptor, NotNull aStream) = 0; virtual STDMETHODIMP_(REFIID) MarshalAs(REFIID aIid) = 0; virtual STDMETHODIMP DisconnectHandlerRemotes() = 0; }; struct IHandlerProvider : public IUnknown , public HandlerProvider { virtual STDMETHODIMP_(REFIID) GetEffectiveOutParamIid(REFIID aCallIid, ULONG aCallMethod) = 0; virtual STDMETHODIMP NewInstance(REFIID aIid, InterceptorTargetPtr aTarget, NotNull aOutNewPayload) = 0; }; } // namespace mscom } // namespace mozilla #endif // mozilla_mscom_IHandlerProvider_h