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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxpreftr.h,v 1.1.1.1.50.3 2004/07/09 01:45:12 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 _HXPREFTR_H_
  50. #define _HXPREFTR_H_
  51. typedef enum
  52. {
  53.     UnknownMode   = -1
  54.    ,MulticastMode = 0
  55.    ,UDPMode       = 1
  56.    ,TCPMode       = 2
  57.    ,HTTPCloakMode = 3
  58. } TransportMode;
  59. typedef enum
  60. {
  61.   PTC_UNKNOWN,
  62.   PTC_INTERNAL,
  63.   PTC_EXTERNAL
  64. } PreferredTransportClass;
  65. typedef enum 
  66. {
  67.   PTP_UNKNOWN,
  68.   PTP_PNM,
  69.   PTP_RTSP
  70. } PreferredTransportProtocol;
  71. typedef enum
  72. {
  73.   PTS_UNKNOWN,
  74.   PTS_CREATE,
  75.   PTS_PENDING,
  76.   PTS_READY
  77. } PreferredTransportState;
  78. #define ATTEMPT_AUTOTRANSPORT 0x1F
  79. #define ATTEMPT_MULTICAST 0x01
  80. #define ATTEMPT_UDP 0x02
  81. #define ATTEMPT_TCP 0x04
  82. #define ATTEMPT_HTTPCLOAK 0x08
  83. typedef _INTERFACE IHXPreferredTransportManager IHXPreferredTransportManager;
  84. typedef _INTERFACE IHXPreferredTransport IHXPreferredTransport;
  85. typedef _INTERFACE IHXPreferredTransportSink IHXPreferredTransportSink;
  86. typedef _INTERFACE IHXProxyManager IHXProxyManager;
  87. /****************************************************************************
  88.  * 
  89.  *  Interface:
  90.  *
  91.  * IHXPreferredTransportManager
  92.  *
  93.  *  Purpose:
  94.  *
  95.  * Interface to select preferred transport
  96.  *
  97.  *  IHXPreferredTransportManager:
  98.  *
  99.  * {00003700-0901-11d1-8B06-00A024406D59}
  100.  *
  101.  */
  102. DEFINE_GUID(IID_IHXPreferredTransportManager, 0x00003700, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  103.        0xa0, 0x24, 0x40, 0x6d, 0x59);
  104. DECLARE_INTERFACE_(IHXPreferredTransportManager, IUnknown)
  105. {
  106.     /*
  107.      * IUnknown methods
  108.      */
  109.     STDMETHOD(QueryInterface) (THIS_
  110. REFIID riid,
  111. void** ppvObj) PURE;
  112.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  113.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  114.     /*
  115.      * IHXPreferredTransportManager methods
  116.      */
  117.     /************************************************************************
  118.      * Method:
  119.      *     IHXPreferredTransportManager::Initialize
  120.      * Purpose:
  121.      *     Initialize the transport manager such as re-reading the preferences
  122.      */
  123.     STDMETHOD(Initialize) (THIS) PURE;
  124.     /************************************************************************
  125.      * Method:
  126.      *     IHXPreferredTransportManager::GetPrefTransport
  127.      * Purpose:
  128.      *     Get preferred host transport
  129.      */
  130.     STDMETHOD(GetPrefTransport) (const char* /* IN  */ pszHostName,
  131. PreferredTransportProtocol /* IN  */ prefTransportProtocol,
  132. REF(IHXPreferredTransport*) /* OUT */ pPrefTransport) PURE;
  133.     /************************************************************************
  134.      * Method:
  135.      *     IHXPreferredTransportManager::RemovePrefTransport
  136.      * Purpose:
  137.      *     Remove preferred host transport
  138.      */
  139.     STDMETHOD(RemovePrefTransport) (IHXPreferredTransport* /* IN  */ pPrefTransort) PURE;
  140.     /************************************************************************
  141.      * Method:
  142.      *     IHXPreferredTransportManager::GetTransportPreference
  143.      * Purpose:
  144.      *     Get transport preference set by the user
  145.      */
  146.     STDMETHOD(GetTransportPreference) (PreferredTransportProtocol /* IN  */ prefTransportProtocol,
  147.  REF(UINT32) /* OUT */ ulPreferenceMask) PURE;
  148. };
  149. /****************************************************************************
  150.  * 
  151.  *  Interface:
  152.  *
  153.  * IHXPreferredTransport
  154.  *
  155.  *  Purpose:
  156.  *
  157.  * Interface to preferred transport
  158.  *
  159.  *  IHXPreferredTransport:
  160.  *
  161.  * {00003701-0901-11d1-8B06-00A024406D59}
  162.  *
  163.  */
  164. DEFINE_GUID(IID_IHXPreferredTransport, 0x00003701, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  165. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  166. DECLARE_INTERFACE_(IHXPreferredTransport, IUnknown)
  167. {
  168.     /*
  169.      * IUnknown methods
  170.      */
  171.     STDMETHOD(QueryInterface) (THIS_
  172. REFIID riid,
  173. void** ppvObj) PURE;
  174.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  175.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  176.     /*
  177.      * IHXPreferredTransport methods
  178.      */
  179.     STDMETHOD_(PreferredTransportState, GetState) (THIS) PURE;
  180.     STDMETHOD_(PreferredTransportClass, GetClass) (THIS) PURE;
  181. STDMETHOD_(BOOL, ValidateTransport) (TransportMode mode) PURE;
  182.     STDMETHOD(GetTransport)     (REF(TransportMode) /* OUT */   prefTransportType,
  183.     REF(UINT16) /* OUT */   uCloakPort) PURE;
  184.     
  185.     STDMETHOD(SetTransport)     (TransportMode /* IN  */   prefTransportType,
  186.     UINT16 /* IN  */   uCloakPort) PURE;
  187.     STDMETHOD(SwitchTransport)     (HX_RESULT /* IN  */   error,
  188.     REF(TransportMode) /* INOUT */ prefTransportType) PURE;
  189.     STDMETHOD(RemoveTransport)     (THIS) PURE;
  190.     STDMETHOD(AddTransportSink)     (IHXPreferredTransportSink* /* IN  */   pPrefTransportSink) PURE;
  191.     STDMETHOD(RemoveTransportSink)  (IHXPreferredTransportSink* /* IN  */   pPrefTransportSink) PURE;
  192.     STDMETHOD_(BOOL, GetHTTPNG)     (THIS) PURE;
  193.     STDMETHOD(SetHTTPNG)     (BOOL bHTTPNG) PURE;
  194. };
  195. /****************************************************************************
  196.  * 
  197.  *  Interface:
  198.  *
  199.  * IHXPreferredTransportSink
  200.  *
  201.  *  Purpose:
  202.  *
  203.  * Sinker to preferred transport
  204.  *
  205.  *  IHXPreferredTransportSink:
  206.  *
  207.  * {00003702-0901-11d1-8B06-00A024406D59}
  208.  *
  209.  */
  210. DEFINE_GUID(IID_IHXPreferredTransportSink, 0x00003702, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  211.     0xa0, 0x24, 0x40, 0x6d, 0x59);
  212. DECLARE_INTERFACE_(IHXPreferredTransportSink, IUnknown)
  213. {
  214.     /*
  215.      * IUnknown methods
  216.      */
  217.     STDMETHOD(QueryInterface) (THIS_
  218. REFIID riid,
  219. void** ppvObj) PURE;
  220.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  221.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  222.     /*
  223.      * IHXPreferredTransportSink methods
  224.      */
  225.     STDMETHOD(TransportSucceeded)   (TransportMode /* IN */   prefTransportType,
  226.      UINT16 /* IN */   uCloakPort) PURE;
  227.     STDMETHOD(TransportFailed)     (THIS) PURE;
  228. };
  229. #endif /* _HXPREFTR_H_ */