|
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 : /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/layout/inspector/public/nsIDOMFontFaceList.idl
*/
#ifndef __gen_nsIDOMFontFaceList_h__
#define __gen_nsIDOMFontFaceList_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMFontFace; /* forward declaration */
/* starting interface: nsIDOMFontFaceList */
#define NS_IDOMFONTFACELIST_IID_STR "2538579c-9472-4fd9-8dc1-d44ce4c1b7ba"
#define NS_IDOMFONTFACELIST_IID \
{0x2538579c, 0x9472, 0x4fd9, \
{ 0x8d, 0xc1, 0xd4, 0x4c, 0xe4, 0xc1, 0xb7, 0xba }}
class NS_NO_VTABLE nsIDOMFontFaceList : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMFONTFACELIST_IID)
/* nsIDOMFontFace item (in unsigned long index); */
NS_IMETHOD Item(uint32_t index, nsIDOMFontFace * *_retval) = 0;
/* readonly attribute unsigned long length; */
NS_IMETHOD GetLength(uint32_t *aLength) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMFontFaceList, NS_IDOMFONTFACELIST_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMFONTFACELIST \
NS_IMETHOD Item(uint32_t index, nsIDOMFontFace * *_retval); \
NS_IMETHOD GetLength(uint32_t *aLength);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMFONTFACELIST(_to) \
NS_IMETHOD Item(uint32_t index, nsIDOMFontFace * *_retval) { return _to Item(index, _retval); } \
NS_IMETHOD GetLength(uint32_t *aLength) { return _to GetLength(aLength); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMFONTFACELIST(_to) \
NS_IMETHOD Item(uint32_t index, nsIDOMFontFace * *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Item(index, _retval); } \
NS_IMETHOD GetLength(uint32_t *aLength) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLength(aLength); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMFontFaceList : public nsIDOMFontFaceList
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMFONTFACELIST
nsDOMFontFaceList();
private:
~nsDOMFontFaceList();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMFontFaceList, nsIDOMFontFaceList)
nsDOMFontFaceList::nsDOMFontFaceList()
{
/* member initializers and constructor code */
}
nsDOMFontFaceList::~nsDOMFontFaceList()
{
/* destructor code */
}
/* nsIDOMFontFace item (in unsigned long index); */
NS_IMETHODIMP nsDOMFontFaceList::Item(uint32_t index, nsIDOMFontFace * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long length; */
NS_IMETHODIMP nsDOMFontFaceList::GetLength(uint32_t *aLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMFontFaceList_h__ */