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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxasm.h,v 1.3.32.3 2004/07/09 01:45:08 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 _HXASM_H_
  50. #define _HXASM_H_
  51. /*
  52.  * Forward declarations of some interfaces defined here-in.
  53.  */
  54. typedef _INTERFACE IHXPacket IHXPacket;
  55. typedef _INTERFACE IHXBackChannel IHXBackChannel;
  56. typedef _INTERFACE IHXASMSource IHXASMSource;
  57. typedef _INTERFACE IHXASMStreamSink IHXASMStreamSink;
  58. typedef _INTERFACE IHXASMStream2 IHXASMStream2;
  59. typedef _INTERFACE IHXASMStream IHXASMStream;
  60. /****************************************************************************
  61.  * 
  62.  *  Interface:
  63.  * 
  64.  * IHXBackChannel
  65.  * 
  66.  *  Purpose:
  67.  * 
  68.  *      Backchannel interface to be used by renderers and implemented by
  69.  * FileFormat Plugins
  70.  * 
  71.  *  IID_IHXBackChannel:
  72.  *  
  73.  * {00001500-0901-11d1-8B06-00A024406D59}
  74.  *
  75.  */
  76. DEFINE_GUID(IID_IHXBackChannel, 0x00001500, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  77.  0xa0, 0x24, 0x40, 0x6d, 0x59);
  78. #undef  INTERFACE
  79. #define INTERFACE   IHXBackChannel
  80. DECLARE_INTERFACE_(IHXBackChannel, IUnknown)
  81. {
  82.     /*
  83.      * IUnknown methods
  84.      */
  85.     STDMETHOD(QueryInterface)   (THIS_
  86.                                 REFIID riid,
  87.                                 void** ppvObj) PURE;
  88.     STDMETHOD_(ULONG32,AddRef)  (THIS) PURE;
  89.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  90.     /*
  91.      * IHXBackChannel method
  92.      */
  93.     /************************************************************************
  94.      * Method:
  95.      *     IHXBackChannel::PacketReady
  96.      * Purpose:
  97.      *      A back channel packet sent from Renderer to FileFormat plugin.
  98.      */
  99.     STDMETHOD(PacketReady) (THIS_
  100. IHXPacket* pPacket) PURE;
  101. };
  102. /****************************************************************************
  103.  * 
  104.  *  Interface:
  105.  *
  106.  * IHXASMSource
  107.  *
  108.  *  Purpose:
  109.  *
  110.  *      This interface is implemented by file formats so that they can
  111.  * act on ASM Subscribe and Unsubscribe actions.
  112.  *
  113.  *  IID_IHXASMSource:
  114.  *
  115.  * {00001501-0901-11d1-8B06-00A024406D59}
  116.  *
  117.  */
  118. DEFINE_GUID(IID_IHXASMSource, 0x00001501, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  119.  0xa0, 0x24, 0x40, 0x6d, 0x59);
  120. #undef  INTERFACE
  121. #define INTERFACE   IHXASMSource
  122. DECLARE_INTERFACE_(IHXASMSource, IUnknown)
  123. {
  124.     /*
  125.      * IUnknown methods
  126.      */
  127.     STDMETHOD(QueryInterface) (THIS_
  128. REFIID riid,
  129. void** ppvObj) PURE;
  130.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  131.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  132.     /*
  133.      * IHXASMSource methods
  134.      */
  135.     /************************************************************************
  136.      * Method:
  137.      *     IHXASMSource::Subscribe
  138.      * Purpose:
  139.      *      Called to inform a file format that a subscription has occurred,
  140.      *     to rule number uRuleNumber, for stream uStreamNumber.
  141.      */
  142.     STDMETHOD(Subscribe) (THIS_
  143. UINT16 uStreamNumber,
  144. UINT16 uRuleNumber) PURE;
  145.     /************************************************************************
  146.      * Method:
  147.      *     IHXASMSource::Unsubscribe
  148.      * Purpose:
  149.      *      Called to inform a file format that a unsubscription has occurred,
  150.      *     to rule number uRuleNumber, for stream uStreamNumber.
  151.      */
  152.     STDMETHOD(Unsubscribe) (THIS_
  153. UINT16 uStreamNumber,
  154. UINT16 uRuleNumber) PURE;
  155. };
  156. /****************************************************************************
  157.  * 
  158.  *  Interface:
  159.  *
  160.  * IHXASMStream
  161.  *
  162.  *  Purpose:
  163.  * This interface is implemented by the client core.  Top level clients
  164.  * renderers, etc can query for this interface off of IHXStream.  This
  165.  * interface allows you to subscribe and unsubscribe to certain rules,
  166.  * and it also allows you to add a advise sink for these events. 
  167.  *
  168.  *  IID_IHXASMStream:
  169.  *
  170.  * {00001502-0901-11d1-8B06-00A024406D59}
  171.  *
  172.  */
  173. DEFINE_GUID(IID_IHXASMStream, 0x00001502, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  174.  0xa0, 0x24, 0x40, 0x6d, 0x59);
  175. #undef  INTERFACE
  176. #define INTERFACE   IHXASMStream
  177. DECLARE_INTERFACE_(IHXASMStream, IUnknown)
  178. {
  179.     /*
  180.      * IUnknown methods
  181.      */
  182.     STDMETHOD(QueryInterface) (THIS_
  183. REFIID riid,
  184. void** ppvObj) PURE;
  185.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  186.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  187.     /*
  188.      * IHXASMStream methods
  189.      */
  190.     /************************************************************************
  191.      * Method:
  192.      *     IHXASMStream::AddASMStreamSink
  193.      * Purpose:
  194.      *     Add an advise sink for getting subscribe and unsubscribe
  195.      *     notifications.
  196.      */
  197.     STDMETHOD(AddStreamSink) (THIS_
  198. IHXASMStreamSink* pASMStreamSink) PURE;
  199.     /************************************************************************
  200.      * Method:
  201.      *     IHXASMStream::RemoveStreamSink
  202.      * Purpose:
  203.      *     Remove an advise sink for getting subscribe and unsubscribe
  204.      *     notifications.
  205.      */
  206.     STDMETHOD(RemoveStreamSink) (THIS_
  207. IHXASMStreamSink* pASMStreamSink) PURE;
  208.     /************************************************************************
  209.      * Method:
  210.      *     IHXASMStream::Subscribe
  211.      * Purpose:
  212.      *     Called by renderers and possibly even top level clients to
  213.      *     inform the core to subscribe to a particular rule number for
  214.      *     this stream.
  215.      */
  216.     STDMETHOD(Subscribe) (THIS_
  217. UINT16 uRuleNumber) PURE;
  218.     /************************************************************************
  219.      * Method:
  220.      *     IHXASMStream::Unsubscribe
  221.      * Purpose:
  222.      *     Called by renderers and possibly even top level clients to
  223.      *     inform the core to unsubscribe to a particular rule number for
  224.      *     this stream.
  225.      */
  226.     STDMETHOD (Unsubscribe) (THIS_
  227. UINT16 uRuleNumber) PURE;
  228. };
  229. /****************************************************************************
  230.  * 
  231.  *  Interface:
  232.  *
  233.  * IHXASMStream2
  234.  *
  235.  *  Purpose:
  236.  * This interface is implemented by the client core.  Top level clients
  237.  * renderers, etc can query for this interface off of IHXStream.  This
  238.  * interface allows you to disable and re-enable certain rules.
  239.  *
  240.  *  IID_IHXASMStream2:
  241.  *
  242.  * {00001504-0901-11d1-8b06-00a024406d59}
  243.  *
  244.  */
  245. DEFINE_GUID(IID_IHXASMStream2, 0x00001504, 0x901, 0x11d1, 0x8b, 0x6, 0x0,
  246.  0xa0, 0x24, 0x40, 0x6d, 0x59);
  247. #undef  INTERFACE
  248. #define INTERFACE   IHXASMStream2
  249. DECLARE_INTERFACE_(IHXASMStream2, IHXASMStream)
  250. {
  251.     /*
  252.      * IUnknown methods
  253.      */
  254.     STDMETHOD(QueryInterface) (THIS_
  255. REFIID riid,
  256. void** ppvObj) PURE;
  257.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  258.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  259.     /*
  260.      * IHXASMStream2 methods
  261.      */
  262.     /************************************************************************
  263.      * Method:
  264.      *     IHXASMStream2::Disable 
  265.      * Purpose:
  266.      *     Called by RA renderer to inform the core to disable a 
  267.      *     particular rule for this stream.
  268.      */
  269.     STDMETHOD(Disable) (THIS_
  270. UINT16 uRuleNumber) PURE;
  271.     /************************************************************************
  272.      * Method:
  273.      *     IHXASMStream2::Enable
  274.      * Purpose:
  275.      *     Called by RA renderer to inform the core to enable a 
  276.      *     particular rule for this stream.
  277.      */
  278.     STDMETHOD (Enable) (THIS_
  279. UINT16 uRuleNumber) PURE;
  280.     STDMETHOD (ReCompute) (THIS) PURE;
  281. };
  282. /****************************************************************************
  283.  * 
  284.  *  Interface:
  285.  *
  286.  * IHXASMStreamSink
  287.  *
  288.  *  Purpose:
  289.  * This is a advise sink for getting notification about subscriptions
  290.  * and unsubscriptions for a stream.
  291.  *
  292.  *  IID_IHXASMStream:
  293.  *
  294.  * {00001503-0901-11d1-8B06-00A024406D59}
  295.  *
  296.  */
  297. DEFINE_GUID(IID_IHXASMStreamSink, 0x00001503, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  298.  0xa0, 0x24, 0x40, 0x6d, 0x59);
  299. #undef  INTERFACE
  300. #define INTERFACE   IHXASMStreamSink
  301. DECLARE_INTERFACE_(IHXASMStreamSink, IUnknown)
  302. {
  303.     /*
  304.      * IUnknown methods
  305.      */
  306.     STDMETHOD(QueryInterface) (THIS_
  307. REFIID riid,
  308. void** ppvObj) PURE;
  309.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  310.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  311.     /*
  312.      * IHXASMStreamSink methods
  313.      */
  314.     /************************************************************************
  315.      * Method:
  316.      *     IHXASMStreamSink::OnSubscribe
  317.      * Purpose:
  318.      *     Called to inform you that a subscribe has occurred.
  319.      */
  320.     STDMETHOD (OnSubscribe) (THIS_
  321. UINT16 uRuleNumber) PURE;
  322.     /************************************************************************
  323.      * Method:
  324.      *     IHXASMStreamSink::OnUnsubscribe
  325.      * Purpose:
  326.      *     Called to inform you that a unsubscribe has occurred.
  327.      */
  328.     STDMETHOD (OnUnsubscribe) (THIS_
  329. UINT16 uRuleNumber) PURE;
  330. };
  331. #endif /*_HXASM_H_*/