nsIDOMMediaList.h
上传用户:goldcmy89
上传日期:2017-12-03
资源大小:2246k
文件大小:5k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM c:/builds/tinderbox/XR-Mozilla1.8.0-Release/WINNT_5.2_Depend/mozilla/dom/public/idl/stylesheets/nsIDOMMediaList.idl
  3.  */
  4. #ifndef __gen_nsIDOMMediaList_h__
  5. #define __gen_nsIDOMMediaList_h__
  6. #ifndef __gen_domstubs_h__
  7. #include "domstubs.h"
  8. #endif
  9. /* For IDL files that don't want to include root IDL files. */
  10. #ifndef NS_NO_VTABLE
  11. #define NS_NO_VTABLE
  12. #endif
  13. /* starting interface:    nsIDOMMediaList */
  14. #define NS_IDOMMEDIALIST_IID_STR "9b0c2ed7-111c-4824-adf9-ef0da6dad371"
  15. #define NS_IDOMMEDIALIST_IID 
  16.   {0x9b0c2ed7, 0x111c, 0x4824, 
  17.     { 0xad, 0xf9, 0xef, 0x0d, 0xa6, 0xda, 0xd3, 0x71 }}
  18. class NS_NO_VTABLE nsIDOMMediaList : public nsISupports {
  19.  public: 
  20.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMMEDIALIST_IID)
  21.   /**
  22.  * The nsIDOMMediaList interface is a datatype for a list of media
  23.  * types in the Document Object Model.
  24.  *
  25.  * For more information on this interface please see
  26.  * http://www.w3.org/TR/DOM-Level-2-Style
  27.  *
  28.  * @status FROZEN
  29.  */
  30.   /* attribute DOMString mediaText; */
  31.   NS_IMETHOD GetMediaText(nsAString & aMediaText) = 0;
  32.   NS_IMETHOD SetMediaText(const nsAString & aMediaText) = 0;
  33.   /* readonly attribute unsigned long length; */
  34.   NS_IMETHOD GetLength(PRUint32 *aLength) = 0;
  35.   /* DOMString item (in unsigned long index); */
  36.   NS_IMETHOD Item(PRUint32 index, nsAString & _retval) = 0;
  37.   /* void deleteMedium (in DOMString oldMedium)  raises (DOMException); */
  38.   NS_IMETHOD DeleteMedium(const nsAString & oldMedium) = 0;
  39.   /* void appendMedium (in DOMString newMedium)  raises (DOMException); */
  40.   NS_IMETHOD AppendMedium(const nsAString & newMedium) = 0;
  41. };
  42. /* Use this macro when declaring classes that implement this interface. */
  43. #define NS_DECL_NSIDOMMEDIALIST 
  44.   NS_IMETHOD GetMediaText(nsAString & aMediaText); 
  45.   NS_IMETHOD SetMediaText(const nsAString & aMediaText); 
  46.   NS_IMETHOD GetLength(PRUint32 *aLength); 
  47.   NS_IMETHOD Item(PRUint32 index, nsAString & _retval); 
  48.   NS_IMETHOD DeleteMedium(const nsAString & oldMedium); 
  49.   NS_IMETHOD AppendMedium(const nsAString & newMedium); 
  50. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  51. #define NS_FORWARD_NSIDOMMEDIALIST(_to) 
  52.   NS_IMETHOD GetMediaText(nsAString & aMediaText) { return _to GetMediaText(aMediaText); } 
  53.   NS_IMETHOD SetMediaText(const nsAString & aMediaText) { return _to SetMediaText(aMediaText); } 
  54.   NS_IMETHOD GetLength(PRUint32 *aLength) { return _to GetLength(aLength); } 
  55.   NS_IMETHOD Item(PRUint32 index, nsAString & _retval) { return _to Item(index, _retval); } 
  56.   NS_IMETHOD DeleteMedium(const nsAString & oldMedium) { return _to DeleteMedium(oldMedium); } 
  57.   NS_IMETHOD AppendMedium(const nsAString & newMedium) { return _to AppendMedium(newMedium); } 
  58. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  59. #define NS_FORWARD_SAFE_NSIDOMMEDIALIST(_to) 
  60.   NS_IMETHOD GetMediaText(nsAString & aMediaText) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMediaText(aMediaText); } 
  61.   NS_IMETHOD SetMediaText(const nsAString & aMediaText) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMediaText(aMediaText); } 
  62.   NS_IMETHOD GetLength(PRUint32 *aLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLength(aLength); } 
  63.   NS_IMETHOD Item(PRUint32 index, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Item(index, _retval); } 
  64.   NS_IMETHOD DeleteMedium(const nsAString & oldMedium) { return !_to ? NS_ERROR_NULL_POINTER : _to->DeleteMedium(oldMedium); } 
  65.   NS_IMETHOD AppendMedium(const nsAString & newMedium) { return !_to ? NS_ERROR_NULL_POINTER : _to->AppendMedium(newMedium); } 
  66. #if 0
  67. /* Use the code below as a template for the implementation class for this interface. */
  68. /* Header file */
  69. class nsDOMMediaList : public nsIDOMMediaList
  70. {
  71. public:
  72.   NS_DECL_ISUPPORTS
  73.   NS_DECL_NSIDOMMEDIALIST
  74.   nsDOMMediaList();
  75. private:
  76.   ~nsDOMMediaList();
  77. protected:
  78.   /* additional members */
  79. };
  80. /* Implementation file */
  81. NS_IMPL_ISUPPORTS1(nsDOMMediaList, nsIDOMMediaList)
  82. nsDOMMediaList::nsDOMMediaList()
  83. {
  84.   /* member initializers and constructor code */
  85. }
  86. nsDOMMediaList::~nsDOMMediaList()
  87. {
  88.   /* destructor code */
  89. }
  90. /* attribute DOMString mediaText; */
  91. NS_IMETHODIMP nsDOMMediaList::GetMediaText(nsAString & aMediaText)
  92. {
  93.     return NS_ERROR_NOT_IMPLEMENTED;
  94. }
  95. NS_IMETHODIMP nsDOMMediaList::SetMediaText(const nsAString & aMediaText)
  96. {
  97.     return NS_ERROR_NOT_IMPLEMENTED;
  98. }
  99. /* readonly attribute unsigned long length; */
  100. NS_IMETHODIMP nsDOMMediaList::GetLength(PRUint32 *aLength)
  101. {
  102.     return NS_ERROR_NOT_IMPLEMENTED;
  103. }
  104. /* DOMString item (in unsigned long index); */
  105. NS_IMETHODIMP nsDOMMediaList::Item(PRUint32 index, nsAString & _retval)
  106. {
  107.     return NS_ERROR_NOT_IMPLEMENTED;
  108. }
  109. /* void deleteMedium (in DOMString oldMedium)  raises (DOMException); */
  110. NS_IMETHODIMP nsDOMMediaList::DeleteMedium(const nsAString & oldMedium)
  111. {
  112.     return NS_ERROR_NOT_IMPLEMENTED;
  113. }
  114. /* void appendMedium (in DOMString newMedium)  raises (DOMException); */
  115. NS_IMETHODIMP nsDOMMediaList::AppendMedium(const nsAString & newMedium)
  116. {
  117.     return NS_ERROR_NOT_IMPLEMENTED;
  118. }
  119. /* End of implementation class template. */
  120. #endif
  121. #endif /* __gen_nsIDOMMediaList_h__ */