xmlccf.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:3k
- /* ***** BEGIN LICENSE BLOCK *****
- * Version: RCSL 1.0
- *
- * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
- *
- * The contents of this file, and the files included with this file, are
- * subject to the current version of RealNetworks Community Source License
- * Version 1.0 (the "License"). You may not use this file except in
- * compliance with the License executed by both you and RealNetworks. You
- * may obtain a copy of the License at
- * http://www.helixcommunity.org/content/rcsl. You may also obtain a
- * copy of the License by contacting RealNetworks directly. Please see the
- * License for the rights, obligations and limitations governing use of the
- * contents of the file.
- *
- * This file is part of the Helix DNA Technology. RealNetworks is the
- * developer of the Original Code and owns the copyrights in the portions
- * it created.
- *
- * This file, and the files included with this file, is distributed and made
- * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- *
- * Technology Compatibility Kit Test Suite(s) Location:
- * http://www.helixcommunity.org/content/tck
- *
- * Contributor(s):
- *
- * ***** END LICENSE BLOCK ***** */
- #ifndef _XMLCCF_H_
- #define _XMLCCF_H_
- STDAPI HXCreateInstance(IUnknown** /*OUT*/ ppIUnknown);
- STDAPI CanUnload(void);
- STDAPI CanUnload2(void);
- #include "baseobj.h"
- /* forward declarations */
- struct IHXPlugin;
- class HXXMLCCFPlugin: public CHXBaseCountingObject,
- public IHXPlugin,
- public IHXCommonClassFactory
- {
- private:
- LONG32 m_lRefCount;
- IUnknown* m_pContext;
- IHXCommonClassFactory* m_pClassFactory;
- virtual ~HXXMLCCFPlugin ();
- PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME
- public:
- HXXMLCCFPlugin();
- /* IUnknown methods */
- STDMETHOD(QueryInterface) (THIS_
- REFIID riid,
- void** ppvObj);
- STDMETHOD_(ULONG32,AddRef) (THIS);
- STDMETHOD_(ULONG32,Release) (THIS);
- /* IHXPlugin Methods */
- STDMETHOD(GetPluginInfo) (THIS_
- REF(BOOL) bLoadMultiple,
- REF(const char*) pDescription,
- REF(const char*) pCopyright,
- REF(const char*) pMoreInfoURL,
- REF(UINT32) versionNumber);
- STDMETHOD(InitPlugin) (THIS_ IUnknown* pContext);
- /* IHXCommonClassFactory */
- STDMETHOD(CreateInstance) (THIS_
- REFCLSID /*IN*/ rclsid,
- void** /*OUT*/ ppUnknown);
-
- STDMETHOD(CreateInstanceAggregatable)
- (THIS_
- REFCLSID /*IN*/ rclsid,
- REF(IUnknown*) /*OUT*/ ppUnknown,
- IUnknown* /*IN*/ pUnkOuter);
- };
- #endif /* _XMLCCF_H_ */