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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxencod.h,v 1.1.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 _HXENCOD_H_
  50. #define _HXENCOD_H_
  51. typedef _INTERFACE IUnknown IUnknown;
  52. typedef _INTERFACE IHXValues IHXValues;
  53. typedef _INTERFACE IHXPacket IHXPacket;
  54. typedef _INTERFACE IHXRequest IHXRequest;
  55. typedef _INTERFACE IHXEncoder IHXEncoder;
  56. typedef _INTERFACE IHXEncoderResponse IHXEncoderResponse;
  57. typedef _INTERFACE IHXEncoderCompletion IHXEncoderCompletion;
  58. typedef _INTERFACE IHXEncoderResponseCompletion IHXEncoderResponseCompletion;
  59. typedef _INTERFACE IHXConnectionlessControl IHXConnectionlessControl;
  60. typedef _INTERFACE IHXTransportControl IHXTransportControl;
  61. #ifndef _MACINTOSH
  62. STDAPI_(IUnknown*) CreateContext();
  63. #else
  64. #pragma export on
  65. STDAPI_(IUnknown*) CreateContext();
  66. #pragma export off
  67. #endif
  68. DEFINE_GUID(IID_IHXEncoderResponse,  0x00001600, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  69. #undef INTERFACE
  70. #define INTERFACE IHXEncoderResponse
  71. DECLARE_INTERFACE_(IHXEncoderResponse, IUnknown)
  72. {
  73.     /*
  74.      * IUnknown methods
  75.      */
  76.     STDMETHOD(QueryInterface) (THIS_
  77.  REFIID riid,
  78.  void** ppvObj) PURE;
  79.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  80.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  81.     /*
  82.      * IHXEncoderResponse methods
  83.      */
  84.     STDMETHOD(InitEncoderResponse) (THIS_
  85.     const char* pHost,
  86.     UINT16 unPort, 
  87.     IHXRequest* pRequest,
  88.     const char* pUsername,
  89.     const char* pPassword,
  90.     IHXEncoder* pEncoder) PURE;
  91.     STDMETHOD(FileHeaderReady)     (THIS_ 
  92.     HX_RESULT   result, 
  93.     IHXValues* pHeader) PURE;
  94.     STDMETHOD(StreamHeaderReady)   (THIS_ 
  95.     HX_RESULT   result, 
  96.     IHXValues* pHeader) PURE;
  97.     STDMETHOD(PacketReady)         (THIS_ 
  98.     HX_RESULT   result,
  99.     IHXPacket* pPacket) PURE;
  100.     STDMETHOD(StreamDone)          (THIS_ 
  101.     UINT16 unStream) PURE;
  102.     STDMETHOD(Process)             (THIS) PURE;
  103.     STDMETHOD_(UINT32,GetTime)     (THIS) PURE;
  104. };
  105. DEFINE_GUID(IID_IHXEncoder, 0x00001601, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  106. #undef INTERFACE
  107. #define INTERFACE IHXEncoder
  108. DECLARE_INTERFACE_(IHXEncoder, IUnknown)
  109. {
  110.     /*
  111.      * IUnknown methods
  112.      */
  113.     STDMETHOD(QueryInterface) (THIS_
  114.  REFIID riid,
  115.  void** ppvObj) PURE;
  116.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  117.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  118.     /*
  119.      * IHXEncoder methods
  120.      */
  121.     STDMETHOD(InitEncoderResponseDone) (THIS_ 
  122. HX_RESULT result) PURE;
  123.     STDMETHOD(GetFileHeader)           (THIS) PURE;
  124.     STDMETHOD(GetStreamHeader)         (THIS_ 
  125. UINT16 unStream) PURE;
  126.     STDMETHOD(StartPackets)            (THIS_ 
  127. UINT16 unStream) PURE;
  128.     STDMETHOD(StopPackets)             (THIS_ 
  129. UINT16 unStream) PURE;
  130. };
  131. DEFINE_GUID(IID_IHXEncoderCompletion, 0x00001602, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  132. #undef INTERFACE
  133. #define INTERFACE IHXEncoderCompletion
  134. DECLARE_INTERFACE_(IHXEncoderCompletion, IUnknown)
  135. {
  136.     /*
  137.      * IUnknown methods
  138.      */
  139.     STDMETHOD(QueryInterface) (THIS_
  140.  REFIID riid,
  141.  void** ppvObj) PURE;
  142.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  143.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  144.     /*
  145.      * IHXEncoderCompletion methods
  146.      */
  147.     STDMETHOD(EncoderDone) (THIS_ 
  148.  HX_RESULT result) PURE;
  149. };
  150. DEFINE_GUID(IID_IHXConnectionlessControl, 0x00001603, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  151. #undef INTERFACE
  152. #define INTERFACE IHXConnectionlessControl
  153. DECLARE_INTERFACE_(IHXConnectionlessControl, IUnknown)
  154. {
  155.     /*
  156.      * IUnknown methods
  157.      */
  158.     STDMETHOD(QueryInterface) (THIS_
  159.  REFIID riid,
  160.  void** ppvObj) PURE;
  161.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  162.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  163.     /*
  164.      * IHXConnectionlessControl methods
  165.      */
  166.     STDMETHOD(EnableConnectionlessControl)
  167. (THIS) PURE;
  168.     STDMETHOD(ConnectionCheckFailed) (THIS_
  169. HX_RESULT status) PURE;
  170.     STDMETHOD(SetConnectionTimeout) (THIS_
  171. UINT32 uSeconds) PURE;
  172. };
  173. DEFINE_GUID(IID_IHXEncoderResponseCompletion, 0x00001604, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  174. #undef INTERFACE
  175. #define INTERFACE IHXEncoderResponseCompletion
  176. DECLARE_INTERFACE_(IHXEncoderResponseCompletion, IUnknown)
  177. {
  178.     /*
  179.      * IUnknown methods
  180.      */
  181.     STDMETHOD(QueryInterface) (THIS_
  182.  REFIID riid,
  183.  void** ppvObj) PURE;
  184.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  185.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  186.     /*
  187.      * IHXEncoderResponseCompletion methods
  188.      */
  189.     STDMETHOD(EncoderResponseDone) (THIS) PURE;
  190. };
  191. /*
  192.  * The only 2 encoder transport types supported are:
  193.  * "x-pn-tng/udp"
  194.  * "x-pn-tng/tcp"
  195.  */
  196. DEFINE_GUID(IID_IHXTransportControl, 0x00001605, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  197. #undef INTERFACE
  198. #define INTERFACE IHXTransportControl
  199. DECLARE_INTERFACE_(IHXTransportControl, IUnknown)
  200. {
  201.     /*
  202.      * IUnknown methods
  203.      */
  204.     STDMETHOD(QueryInterface) (THIS_
  205.  REFIID riid,
  206.  void** ppvObj) PURE;
  207.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  208.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  209.     /*
  210.      * IHXTransportControl methods
  211.      */
  212.     STDMETHOD(SetTransportType) (const char* pTransportType) PURE;
  213. };
  214. #endif /* _HXENCOD_H_ */