|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21573/task/21573/root/proc/21572/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/html/nsIDOMHTMLByteRanges.idl
*/
#ifndef __gen_nsIDOMHTMLByteRanges_h__
#define __gen_nsIDOMHTMLByteRanges_h__
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIDOMHTMLByteRanges */
#define NS_IDOMHTMLBYTERANGES_IID_STR "992c540c-4d81-42df-80a6-f71ede2b59d8"
#define NS_IDOMHTMLBYTERANGES_IID \
{0x992c540c, 0x4d81, 0x42df, \
{ 0x80, 0xa6, 0xf7, 0x1e, 0xde, 0x2b, 0x59, 0xd8 }}
class NS_NO_VTABLE nsIDOMHTMLByteRanges : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMHTMLBYTERANGES_IID)
/* readonly attribute unsigned long length; */
NS_IMETHOD GetLength(uint32_t *aLength) = 0;
/* unsigned long start (in unsigned long index); */
NS_IMETHOD Start(uint32_t index, uint32_t *_retval) = 0;
/* unsigned long end (in unsigned long index); */
NS_IMETHOD End(uint32_t index, uint32_t *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMHTMLByteRanges, NS_IDOMHTMLBYTERANGES_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMHTMLBYTERANGES \
NS_IMETHOD GetLength(uint32_t *aLength); \
NS_IMETHOD Start(uint32_t index, uint32_t *_retval); \
NS_IMETHOD End(uint32_t index, uint32_t *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMHTMLBYTERANGES(_to) \
NS_IMETHOD GetLength(uint32_t *aLength) { return _to GetLength(aLength); } \
NS_IMETHOD Start(uint32_t index, uint32_t *_retval) { return _to Start(index, _retval); } \
NS_IMETHOD End(uint32_t index, uint32_t *_retval) { return _to End(index, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMHTMLBYTERANGES(_to) \
NS_IMETHOD GetLength(uint32_t *aLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLength(aLength); } \
NS_IMETHOD Start(uint32_t index, uint32_t *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Start(index, _retval); } \
NS_IMETHOD End(uint32_t index, uint32_t *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->End(index, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMHTMLByteRanges : public nsIDOMHTMLByteRanges
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMHTMLBYTERANGES
nsDOMHTMLByteRanges();
private:
~nsDOMHTMLByteRanges();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMHTMLByteRanges, nsIDOMHTMLByteRanges)
nsDOMHTMLByteRanges::nsDOMHTMLByteRanges()
{
/* member initializers and constructor code */
}
nsDOMHTMLByteRanges::~nsDOMHTMLByteRanges()
{
/* destructor code */
}
/* readonly attribute unsigned long length; */
NS_IMETHODIMP nsDOMHTMLByteRanges::GetLength(uint32_t *aLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* unsigned long start (in unsigned long index); */
NS_IMETHODIMP nsDOMHTMLByteRanges::Start(uint32_t index, uint32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* unsigned long end (in unsigned long index); */
NS_IMETHODIMP nsDOMHTMLByteRanges::End(uint32_t index, uint32_t *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMHTMLByteRanges_h__ */