rmapends.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * 
  3.  *  $Id: rmapends.h,v 1.1 2003/05/30 02:17:36 gabest Exp $
  4.  *  
  5.  *  Copyright (C) 1995-1999 RealNetworks, Inc. All rights reserved.
  6.  *
  7.  *  http://www.real.com/devzone
  8.  *
  9.  *  This program contains proprietary 
  10.  *  information of Progressive Networks, Inc, and is licensed
  11.  *  subject to restrictions on use and distribution.
  12.  *
  13.  *
  14.  *  Pending Status interfaces
  15.  *
  16.  */
  17. #ifndef _RMAPENDS_H_
  18. #define _RMAPENDS_H_
  19. /*
  20.  * Forward declarations of some interfaces defined or used here-in.
  21.  */
  22. typedef _INTERFACE IUnknown IUnknown;
  23. typedef _INTERFACE IRMAPendingStatus IRMAPendingStatus;
  24. /****************************************************************************
  25.  * 
  26.  *  Interface:
  27.  *
  28.  * IRMAPendingStatus
  29.  *
  30.  *  Purpose:
  31.  *
  32.  * Interface to get the current pending status from an object
  33.  *
  34.  *  IRMAPendingStatus:
  35.  *
  36.  * {00001100-0901-11d1-8B06-00A024406D59}
  37.  */
  38. DEFINE_GUID(IID_IRMAPendingStatus, 0x00001100, 0x901, 0x11d1, 0x8b, 0x6, 0x0, 
  39. 0xa0, 0x24, 0x40, 0x6d, 0x59);
  40. #undef  INTERFACE
  41. #define INTERFACE   IRMAPendingStatus
  42. #define RMA_STATUS_INITIALIZING 0x01
  43. #define RMA_STATUS_BUFFERING 0x02
  44. #define RMA_STATUS_CONTACTING 0x03
  45. #define RMA_STATUS_READY 0x04
  46. DECLARE_INTERFACE_(IRMAPendingStatus, IUnknown)
  47. {
  48.     /*
  49.      * IUnknown methods
  50.      */
  51.     STDMETHOD(QueryInterface) (THIS_
  52. REFIID riid,
  53. void** ppvObj) PURE;
  54.     STDMETHOD_(ULONG,AddRef) (THIS) PURE;
  55.     STDMETHOD_(ULONG,Release) (THIS) PURE;
  56.     /*
  57.      * IRMAPendingStatus methods
  58.      */
  59.     /************************************************************************
  60.      * Method:
  61.      *     IRMAPendingStatus::GetStatus
  62.      * Purpose:
  63.      *     Called by the user to get the current pending status from an object
  64.      */
  65.     STDMETHOD(GetStatus) (THIS_
  66. REF(UINT16) uStatusCode, 
  67. REF(IRMABuffer*) pStatusDesc, 
  68. REF(UINT16) ulPercentDone) PURE;
  69. };
  70. #endif /* _RMAPENDS_H_ */