struct CCL::Web::IWebProtocolRegistrar

Overview

Web protocol registration. More…

#include <iwebprotocol.h>

struct IWebProtocolRegistrar: public CCL::IUnknown
{
    // methods

    virtual tresult CCL_API registerProtocol (IWebClientProtocol* protocol) = 0;
    virtual tresult CCL_API unregisterProtocol (IWebClientProtocol* protocol) = 0;
    virtual tresult CCL_API registerProtocolPlugins () = 0;
    virtual tresult CCL_API unregisterProtocolPlugins () = 0;
};

Inherited Members

public:
    // methods

    virtual tresult CCL_API queryInterface (UIDRef iid, void** ptr) = 0;
    virtual unsigned int CCL_API retain () = 0;
    virtual unsigned int CCL_API release () = 0;

Detailed Documentation

Web protocol registration.

Methods

virtual tresult CCL_API registerProtocol (IWebClientProtocol* protocol) = 0

Register web protocol.

virtual tresult CCL_API unregisterProtocol (IWebClientProtocol* protocol) = 0

Unregister web protocol.

virtual tresult CCL_API registerProtocolPlugins () = 0

Instantiate and register all web protocols in PLUG_CATEGORY_WEBCLIENTPROTOCOL.

virtual tresult CCL_API unregisterProtocolPlugins () = 0

Uregister all web protocol plug-ins.