|
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/21571/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/content/base/public/nsIDOMFileList.idl
*/
#ifndef __gen_nsIDOMFileList_h__
#define __gen_nsIDOMFileList_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
class nsIDOMFile; /* forward declaration */
/* starting interface: nsIDOMFileList */
#define NS_IDOMFILELIST_IID_STR "3bfef9fa-8ad3-4e49-bd62-d6cd75b29298"
#define NS_IDOMFILELIST_IID \
{0x3bfef9fa, 0x8ad3, 0x4e49, \
{ 0xbd, 0x62, 0xd6, 0xcd, 0x75, 0xb2, 0x92, 0x98 }}
class NS_NO_VTABLE nsIDOMFileList : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMFILELIST_IID)
/* readonly attribute unsigned long length; */
NS_IMETHOD GetLength(uint32_t *aLength) = 0;
/* [forward(getItemAt),getter] nsIDOMFile item (in unsigned long index); */
NS_IMETHOD Item(uint32_t index, nsIDOMFile * *_retval) = 0;
/* [noscript,nostdcall,notxpcom] nsIDOMFile getItemAt (in unsigned long index); */
virtual nsIDOMFile * GetItemAt(uint32_t index) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMFileList, NS_IDOMFILELIST_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMFILELIST \
NS_IMETHOD GetLength(uint32_t *aLength); \
NS_IMETHOD Item(uint32_t index, nsIDOMFile * *_retval); \
virtual nsIDOMFile * GetItemAt(uint32_t index);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMFILELIST(_to) \
NS_IMETHOD GetLength(uint32_t *aLength) { return _to GetLength(aLength); } \
NS_IMETHOD Item(uint32_t index, nsIDOMFile * *_retval) { return _to Item(index, _retval); } \
virtual nsIDOMFile * GetItemAt(uint32_t index) { return _to GetItemAt(index); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMFILELIST(_to) \
NS_IMETHOD GetLength(uint32_t *aLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLength(aLength); } \
NS_IMETHOD Item(uint32_t index, nsIDOMFile * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Item(index, _retval); } \
virtual nsIDOMFile * GetItemAt(uint32_t index) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetItemAt(index); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMFileList : public nsIDOMFileList
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMFILELIST
nsDOMFileList();
private:
~nsDOMFileList();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMFileList, nsIDOMFileList)
nsDOMFileList::nsDOMFileList()
{
/* member initializers and constructor code */
}
nsDOMFileList::~nsDOMFileList()
{
/* destructor code */
}
/* readonly attribute unsigned long length; */
NS_IMETHODIMP nsDOMFileList::GetLength(uint32_t *aLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [forward(getItemAt),getter] nsIDOMFile item (in unsigned long index); */
NS_IMETHODIMP nsDOMFileList::Item(uint32_t index, nsIDOMFile * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* [noscript,nostdcall,notxpcom] nsIDOMFile getItemAt (in unsigned long index); */
nsIDOMFile * nsDOMFileList::GetItemAt(uint32_t index)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMFileList_h__ */