hxfwrtr.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _HXFWRTR_H_
  36. #define _HXFWRTR_H_
  37. /****************************************************************************
  38.  *  Includes
  39.  */
  40. #include "hxtypes.h"
  41. #include "hxcom.h"
  42. #include "ihxpckts.h"
  43. #include "hxfiles.h"
  44. // $Private:
  45. /****************************************************************************
  46.  * 
  47.  *  Interface:
  48.  *
  49.  * IHXFileWriterMonitor
  50.  *
  51.  *  Purpose:
  52.  *
  53.  * Interface for File Writer Monitor object.
  54.  *
  55.  *  IID_IHXFileWriterMonitor
  56.  *
  57.  * {B5615DE1-42A6-11d5-A90C-00010251B340}
  58.  *
  59.  */
  60. DEFINE_GUID(IID_IHXFileWriterMonitor,
  61. 0xb5615de1, 0x42a6, 0x11d5, 0xa9, 0xc, 0x0, 0x1, 0x2, 0x51, 0xb3, 0x40);
  62. #undef  INTERFACE
  63. #define INTERFACE   IHXFileWriterMonitor
  64. DECLARE_INTERFACE_(IHXFileWriterMonitor, IUnknown)
  65. {
  66.     /*
  67.      * IUnknown methods
  68.      */
  69.     STDMETHOD(QueryInterface) (THIS_
  70. REFIID riid,
  71. void** ppvObj) PURE;
  72.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  73.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  74.     /*
  75.      * IHXFileWriterMonitor methods
  76.      */
  77.     STDMETHOD(OnStatus) (THIS_
  78. HX_RESULT status,
  79. IHXValues* pInfoList
  80. ) PURE;
  81.     STDMETHOD(OnVolumeInitiation) (THIS_
  82. HX_RESULT status,
  83. const char* pName,
  84. REF(ULONG32) ulTag
  85. ) PURE;
  86.     STDMETHOD(OnPacketsReady) (THIS_
  87. HX_RESULT status
  88. ) PURE;
  89.     STDMETHOD(OnVolumeCompletion) (THIS_
  90. HX_RESULT status,
  91. ULONG32 ulTag
  92. ) PURE;
  93.     STDMETHOD(OnCompletion) (THIS_
  94. HX_RESULT status
  95. ) PURE;
  96. };
  97. /****************************************************************************
  98.  * 
  99.  *  Interface:
  100.  *
  101.  * IHXPropertyAdviser
  102.  *
  103.  *  Purpose:
  104.  *
  105.  * Interface for File Writer Monitor object.
  106.  *
  107.  *  IID_IHXPropertyAdviser
  108.  *
  109.  * {264FD2F0-432B-11d5-A90D-00010251B340}
  110.  *
  111.  */
  112. DEFINE_GUID(IID_IHXPropertyAdviser, 
  113. 0x264fd2f0, 0x432b, 0x11d5, 0xa9, 0xd, 0x0, 0x1, 0x2, 0x51, 0xb3, 0x40);
  114. #undef  INTERFACE
  115. #define INTERFACE   IHXPropertyAdviser
  116. DECLARE_INTERFACE_(IHXPropertyAdviser, IUnknown)
  117. {
  118. /*
  119.      * IUnknown methods
  120.      */
  121.     STDMETHOD(QueryInterface) (THIS_
  122. REFIID riid,
  123. void** ppvObj) PURE;
  124.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  125.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  126.     /*
  127.      * IHXPropertyAdviser methods
  128.      */
  129.     STDMETHOD(GetPropertyULONG32) (THIS_
  130. const char*      pPropertyName,
  131. REF(ULONG32)     ulPropertyName
  132. ) PURE;
  133.     
  134.     STDMETHOD(GetPropertyBuffer) (THIS_
  135. const char*      pPropertyName,
  136. REF(IHXBuffer*) pPropertyValue
  137. ) PURE;
  138.     STDMETHOD(GetPropertyCString) (THIS_
  139. const char*      pPropertyName,
  140. REF(IHXBuffer*) pPropertyValue
  141. ) PURE;
  142.     STDMETHOD(GetPropertySet) (THIS_
  143. const char*  pPropertySetName,
  144. REF(IHXValues*) pPropertySet
  145. ) PURE;
  146. };
  147. /****************************************************************************
  148.  * 
  149.  *  Interface:
  150.  *
  151.  * IHXFileWriter
  152.  *
  153.  *  Purpose:
  154.  *
  155.  * Interface for File Writer object.
  156.  *
  157.  *  IID_IHXFileWriter
  158.  *
  159.  * {B5615DE0-42A6-11d5-A90C-00010251B340}
  160.  *
  161.  */
  162. DEFINE_GUID(IID_IHXFileWriter, 
  163. 0xb5615de0, 0x42a6, 0x11d5, 0xa9, 0xc, 0x0, 0x1, 0x2, 0x51, 0xb3, 0x40);
  164. #undef  INTERFACE
  165. #define INTERFACE   IHXFileWriter
  166. DECLARE_INTERFACE_(IHXFileWriter, 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.      * IHXFileWriter methods
  178.      */
  179.     /************************************************************************
  180.      * Method:
  181.      *     IHXFileFormatObject::GetFileFormatInfo
  182.      * Purpose:
  183.      *     Returns information vital to the instantiation of file format 
  184.      *     plugins.
  185.      */
  186.     STDMETHOD(GetFileFormatInfo)(THIS_
  187. REF(const char**) /*OUT*/ pFileMimeTypes,
  188. REF(const char**) /*OUT*/ pFileExtensions,
  189. REF(const char**) /*OUT*/ pFileOpenNames
  190. ) PURE;
  191.     STDMETHOD(InitFileWriter) (THIS_
  192. IHXRequest* pRequest,
  193. IHXFileWriterMonitor* pMonitor,
  194. IHXPropertyAdviser* pAdviser
  195. ) PURE;
  196.     STDMETHOD(Close) (THIS) PURE;
  197.     STDMETHOD(Abort) (THIS) PURE;
  198.     STDMETHOD(SetFileHeader) (THIS_
  199. IHXValues* pHeader
  200. ) PURE;
  201.     STDMETHOD(SetStreamHeader) (THIS_
  202. IHXValues* pHeader
  203. ) PURE;
  204.     STDMETHOD(SetProperties) (THIS_
  205. IHXValues* pProperties
  206. ) PURE;
  207.     
  208.     STDMETHOD(SetPacket) (THIS_
  209. IHXPacket* pPacket
  210. ) PURE;
  211.     STDMETHOD(StreamDone) (THIS_
  212. UINT16 unStreamNumber
  213. ) PURE;
  214. };
  215. // $EndPrivate.
  216. #endif  // _HXFWRTR_H_