Copy as Markdown

Other Tools

/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM $SRCDIR/xpcom/ds/nsIArrayExtensions.idl
*/
#ifndef __gen_nsIArrayExtensions_h__
#define __gen_nsIArrayExtensions_h__
#include "nsIArray.h"
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIArrayExtensions */
#define NS_IARRAYEXTENSIONS_IID_STR "261d442e-050c-453d-8aaa-b3f23bcc528b"
#define NS_IARRAYEXTENSIONS_IID \
{0x261d442e, 0x050c, 0x453d, \
{ 0x8a, 0xaa, 0xb3, 0xf2, 0x3b, 0xcc, 0x52, 0x8b }}
class NS_NO_VTABLE nsIArrayExtensions : public nsIArray {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IARRAYEXTENSIONS_IID)
/* Used by ToJSValue to check which scriptable interface is implemented. */
using ScriptableInterfaceType = nsIArrayExtensions;
/* uint32_t Count (); */
NS_IMETHOD Count(uint32_t *_retval) = 0;
/* nsISupports GetElementAt (in uint32_t index); */
NS_IMETHOD GetElementAt(uint32_t index, nsISupports **_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIArrayExtensions, NS_IARRAYEXTENSIONS_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIARRAYEXTENSIONS \
NS_IMETHOD Count(uint32_t *_retval) override; \
NS_IMETHOD GetElementAt(uint32_t index, nsISupports **_retval) override;
/* Use this macro when declaring the members of this interface when the
class doesn't implement the interface. This is useful for forwarding. */
#define NS_DECL_NON_VIRTUAL_NSIARRAYEXTENSIONS \
nsresult Count(uint32_t *_retval); \
nsresult GetElementAt(uint32_t index, nsISupports **_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIARRAYEXTENSIONS(_to) \
NS_IMETHOD Count(uint32_t *_retval) override { return _to Count(_retval); } \
NS_IMETHOD GetElementAt(uint32_t index, nsISupports **_retval) override { return _to GetElementAt(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_NSIARRAYEXTENSIONS(_to) \
NS_IMETHOD Count(uint32_t *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Count(_retval); } \
NS_IMETHOD GetElementAt(uint32_t index, nsISupports **_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetElementAt(index, _retval); }
#endif /* __gen_nsIArrayExtensions_h__ */