hxsrc.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:9k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxsrc.h,v 1.3.48.3 2004/07/09 01:45:13 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #ifndef _HXSRC_H_
  50. #define _HXSRC_H_
  51. /*
  52.  * Forward declarations of some interfaces defined or used here-in.
  53.  */
  54. typedef _INTERFACE IHXRawSourceObject IHXRawSourceObject;
  55. typedef _INTERFACE IHXRawSinkObject IHXRawSinkObject;
  56. typedef _INTERFACE IHXSourceFinderObject IHXSourceFinderObject;
  57. typedef _INTERFACE IHXSourceFinderResponse IHXSourceFinderResponse;
  58. typedef _INTERFACE IHXRequest IHXRequest;
  59. /****************************************************************************
  60.  * 
  61.  *  Interface:
  62.  * 
  63.  * IHXRawSourceObject
  64.  * 
  65.  *  Purpose:
  66.  * 
  67.  * Object that serves packets to sinks
  68.  * 
  69.  *  IID_IHXRawSourceObject:
  70.  * 
  71.  * {00001000-0901-11d1-8B06-00A024406D59}
  72.  * 
  73.  */
  74. DEFINE_GUID(IID_IHXRawSourceObject, 0x00001000, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  75. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  76. #undef  INTERFACE
  77. #define INTERFACE   IHXRawSourceObject
  78. DECLARE_INTERFACE_(IHXRawSourceObject, IUnknown)
  79. {
  80. /*
  81.  * IUnknown methods
  82.  */
  83.     STDMETHOD(QueryInterface) (THIS_
  84. REFIID riid,
  85. void** ppvObj) PURE;
  86.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  87.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  88. /*
  89.  * IHXRawSourceObject methods
  90.  */
  91.     /************************************************************************
  92.      * Method:
  93.      *     IHXRawSourceObject::Init
  94.      * Purpose:
  95.      *     Initializes the connection between the source and the sink
  96.      */
  97.     STDMETHOD(Init) (THIS_
  98. IUnknown* pUnknown) PURE;
  99.     STDMETHOD(Done) (THIS) PURE;
  100.     STDMETHOD(GetFileHeader) (THIS) PURE;
  101.     STDMETHOD(GetStreamHeader) (THIS_
  102. UINT16 unStreamNumber) PURE;
  103.     STDMETHOD(StartPackets) (THIS_
  104. UINT16 unStreamNumber) PURE;
  105.     STDMETHOD(StopPackets) (THIS_
  106. UINT16 unStreamNumber) PURE;
  107. };
  108. /****************************************************************************
  109.  * 
  110.  *  Interface:
  111.  * 
  112.  * IHXRawSinkObject
  113.  * 
  114.  *  Purpose:
  115.  * 
  116.  * Object that receives raw packets from a source
  117.  * 
  118.  *  IID_IHXRawSinkObject:
  119.  * 
  120.  * {00001001-0901-11d1-8B06-00A024406D59}
  121.  * 
  122.  */
  123. DEFINE_GUID(IID_IHXRawSinkObject, 0x00001001, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  124. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  125. #undef  INTERFACE
  126. #define INTERFACE   IHXRawSinkObject
  127. DECLARE_INTERFACE_(IHXRawSinkObject, IUnknown)
  128. {
  129. /*
  130.  * IUnknown methods
  131.  */
  132.     STDMETHOD(QueryInterface) (THIS_
  133. REFIID riid,
  134. void** ppvObj) PURE;
  135.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  136.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  137. /*
  138.  * IHXRawSinkObject methods
  139.  */
  140.     /************************************************************************
  141.      * Method:
  142.      *     IHXRawSinkObject::InitDone
  143.      * Purpose:
  144.      *     Callback after source object has initialized the connection
  145.      */
  146.     STDMETHOD(InitDone) (THIS_
  147. HX_RESULT status) PURE;
  148.     STDMETHOD(FileHeaderReady) (THIS_
  149. HX_RESULT status,
  150. IHXValues* pHeader) PURE;
  151.     STDMETHOD(StreamHeaderReady) (THIS_
  152. HX_RESULT status,
  153. IHXValues* pHeader) PURE;
  154.     STDMETHOD(PacketReady) (THIS_
  155. HX_RESULT status,
  156. IHXPacket* pPacket) PURE;
  157.     STDMETHOD(StreamDone) (THIS_
  158. UINT16 unStreamNumber) PURE;
  159. };
  160. /****************************************************************************
  161.  * 
  162.  *  Interface:
  163.  * 
  164.  * IHXSourceFinderObject
  165.  * 
  166.  *  Purpose:
  167.  * 
  168.  * Object that allows a sink to search for a raw packet source
  169.  * 
  170.  *  IID_IHXSourceFinderObject:
  171.  * 
  172.  * {00001002-0901-11d1-8B06-00A024406D59}
  173.  * 
  174.  */
  175. DEFINE_GUID(IID_IHXSourceFinderObject, 0x00001002, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  176. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  177. #define CLSID_IHXSourceFinderObject IID_IHXSourceFinderObject
  178. #undef  INTERFACE
  179. #define INTERFACE   IHXSourceFinderObject
  180. #define CLSID_IHXSourceFinderObject IID_IHXSourceFinderObject
  181. DECLARE_INTERFACE_(IHXSourceFinderObject, IUnknown)
  182. {
  183. /*
  184.  * IUnknown methods
  185.  */
  186.     STDMETHOD(QueryInterface) (THIS_
  187. REFIID riid,
  188. void** ppvObj) PURE;
  189.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  190.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  191. /*
  192.  * IHXSourceFinderObject methods
  193.  */
  194.     STDMETHOD(Init) (THIS_ 
  195. IUnknown* pUnknown) PURE;
  196.     STDMETHOD(Find) (THIS_
  197. IHXRequest* pRequest) PURE;
  198.     STDMETHOD(Done) (THIS) PURE;
  199. };
  200. /****************************************************************************
  201.  * 
  202.  *  Interface:
  203.  * 
  204.  * IHXSourceFinderResponse
  205.  * 
  206.  *  Purpose:
  207.  * 
  208.  * Object that returns a raw packet source to a sink
  209.  * 
  210.  *  IID_IHXSourceFinderResponse:
  211.  * 
  212.  * {00001003-0901-11d1-8B06-00A024406D59}
  213.  * 
  214.  */
  215. DEFINE_GUID(IID_IHXSourceFinderResponse, 0x00001003, 0x901, 0x11d1,
  216.             0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  217. #undef  INTERFACE
  218. #define INTERFACE   IHXSourceFinderResponse
  219. DECLARE_INTERFACE_(IHXSourceFinderResponse, IUnknown)
  220. {
  221. /*
  222.  * IUnknown methods
  223.  */
  224.     STDMETHOD(QueryInterface) (THIS_
  225. REFIID riid,
  226. void** ppvObj) PURE;
  227.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  228.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  229. /*
  230.  * IHXSourceFinderResponse methods
  231.  */
  232.     STDMETHOD(InitDone) (THIS_
  233. HX_RESULT status) PURE;
  234.     STDMETHOD(FindDone) (THIS_
  235. HX_RESULT status,
  236. IUnknown* pUnknown) PURE;
  237. };
  238. /****************************************************************************
  239.  * 
  240.  *  Interface:
  241.  * 
  242.  * IHXSourceFinderFileResponse
  243.  *      A source finder response interface for static content.  Returns the
  244.  *      underlying file object associated with the raw source container. 
  245.  *
  246.  *  IID_IHXSourceFinderFileResponse:
  247.  * 
  248.  * {00001004-0901-11d1-8B06-00A024406D59}
  249.  * 
  250.  */
  251. DEFINE_GUID(IID_IHXSourceFinderFileResponse, 0x00001004, 0x901, 0x11d1,
  252.             0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  253. #undef  INTERFACE
  254. #define INTERFACE   IHXSourceFinderFileResponse
  255. DECLARE_INTERFACE_(IHXSourceFinderFileResponse, IUnknown)
  256. {
  257. /*
  258.  * IUnknown methods
  259.  */
  260.     STDMETHOD(QueryInterface) (THIS_
  261. REFIID riid,
  262. void** ppvObj) PURE;
  263.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  264.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  265. /*
  266.  * IHXSourceFinderFileResponse methods
  267.  */
  268.     STDMETHOD(FindDone) (THIS_
  269. HX_RESULT status,
  270. IUnknown* pSourceContainer,
  271.                     IUnknown*   pFileObject) PURE;
  272. };
  273. #endif /* _HXSRC_H_ */