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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: ihxfgbuf.h,v 1.1.1.1.50.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 _IHXFGBUF_H_
  50. #define _IHXFGBUF_H_
  51. typedef _INTERFACE      IHXBuffer                      IHXBuffer;
  52. /****************************************************************************
  53.  * 
  54.  *  Interface:
  55.  *
  56.  * IHXEnumFragmentedBuffer
  57.  *
  58.  *  Purpose:
  59.  *
  60.  * Basic opaque data storage buffer. Used in interfaces where 
  61.  * object ownership is best managed through COM style reference 
  62.  * counting.
  63.  *
  64.  *  IID_IHXEnumFragmentedBuffer:
  65.  *
  66.  * {00002301-0901-11d1-8B06-00A024406D59}
  67.  *
  68.  */
  69. DEFINE_GUID(IID_IHXEnumFragmentedBuffer,   0x00002301, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 0xa0, 0x24, 0x40, 0x6d, 0x59);
  70. /*
  71.  *  The IHXCommonClassFactory supports creating an instance
  72.  *  of this object.
  73.  */
  74. #define CLSID_IHXEnumFragmentedBuffer IID_IHXEnumFragmentedBuffer
  75. #undef  INTERFACE
  76. #define INTERFACE   IHXEnumFragmentedBuffer
  77. DECLARE_INTERFACE_(IHXEnumFragmentedBuffer, IUnknown)
  78. {
  79.     /*
  80.      * IUnknown methods
  81.      */
  82.     STDMETHOD(QueryInterface) (THIS_
  83. REFIID riid,
  84. void** ppvObj) PURE;
  85.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  86.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  87.     /*
  88.      * IHXEnumFragmentedBuffer methods
  89.      */
  90.     STDMETHOD(Reset)(THIS) PURE;
  91.     STDMETHOD(Next)
  92.     (
  93.         THIS_
  94.         UINT32          ulNumToReturn,
  95.         IHXBuffer**    ppbufNext,
  96.         UINT32*         pulNumReturned
  97.     ) PURE;
  98.     STDMETHOD(Skip)
  99.     (
  100.         THIS_ 
  101.         UINT32 ulNumToSkip
  102.     ) PURE;
  103.     STDMETHOD(Clone)
  104.     (
  105.         THIS_ 
  106.         IHXEnumFragmentedBuffer** ppefbNew
  107.     ) PURE;
  108. };
  109. /****************************************************************************
  110.  * 
  111.  *  Interface:
  112.  *
  113.  * IHXFragmentedBuffer
  114.  *
  115.  *  Purpose:
  116.  *
  117.  * Basic opaque data storage buffer. Used in interfaces where 
  118.  * object ownership is best managed through COM style reference 
  119.  * counting.
  120.  *
  121.  *  IID_IHXFragmentedBuffer:
  122.  *
  123.  * {00002300-0901-11d1-8B06-00A024406D59}
  124.  *
  125.  */
  126. DEFINE_GUID(IID_IHXFragmentedBuffer, 0x00002300, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  127. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  128. /*
  129.  *  The IHXCommonClassFactory supports creating an instance
  130.  *  of this object.
  131.  */
  132. #define CLSID_IHXFragmentedBuffer IID_IHXFragmentedBuffer
  133. #undef  INTERFACE
  134. #define INTERFACE   IHXFragmentedBuffer
  135. DECLARE_INTERFACE_(IHXFragmentedBuffer, IUnknown)
  136. {
  137.     /*
  138.      * IUnknown methods
  139.      */
  140.     STDMETHOD(QueryInterface) (THIS_
  141. REFIID riid,
  142. void** ppvObj) PURE;
  143.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  144.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  145.     /*
  146.      * IHXFragmentedBuffer methods
  147.      */
  148.     STDMETHOD(GetEnumerator)
  149.     (
  150.         THIS_ 
  151.         IHXEnumFragmentedBuffer** ppefbNewEnum
  152.     ) PURE;
  153.     STDMETHOD(Prepend)
  154.     (
  155.         THIS_ 
  156.         IHXBuffer* pBufferFrom, 
  157.         ULONG32 ulStartFrom, 
  158.         ULONG32 ulLengthFrom
  159.     ) PURE;
  160.     STDMETHOD(Append)
  161.     (
  162.         THIS_ 
  163.         IHXBuffer* pBufferFrom, 
  164.         ULONG32 ulStartFrom, 
  165.         ULONG32 ulLengthFrom
  166.     ) PURE;
  167.     STDMETHOD(Insert)
  168.     (
  169.         THIS_ 
  170.         IHXBuffer* pBufferFrom, 
  171.         ULONG32 ulStartFrom, 
  172.         ULONG32 ulLengthFrom, 
  173.         ULONG32 ulStartTo
  174.     ) PURE;
  175.     STDMETHOD(Replace)
  176.     (
  177.         THIS_ 
  178.         IHXBuffer* pBufferFrom, 
  179.         ULONG32 ulStartFrom, 
  180.         ULONG32 ulLengthFrom, 
  181.         ULONG32 ulStartTo
  182.     ) PURE;
  183.     STDMETHOD(Get)
  184.     (
  185.         THIS_ 
  186.         ULONG32 ulStartFrom, 
  187.         ULONG32 ulLengthFrom, 
  188.         REF(UCHAR*) pData, 
  189.         REF(ULONG32) ulLength
  190.     ) PURE;
  191.     STDMETHOD_(UCHAR*, GetBuffer)
  192.     (
  193.         THIS_ 
  194.         ULONG32 ulStartFrom, 
  195.         ULONG32 ulLengthFrom
  196.     ) PURE;
  197. };
  198. #endif /* !_IHXFGBUF_H_ */