|
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/21585/root/usr/lib/xulrunner-devel-17.0.10/include/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/dom/interfaces/load-save/nsIDOMLSProgressEvent.idl
*/
#ifndef __gen_nsIDOMLSProgressEvent_h__
#define __gen_nsIDOMLSProgressEvent_h__
#ifndef __gen_nsIDOMEvent_h__
#include "nsIDOMEvent.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIDOMLSInput; /* forward declaration */
/* starting interface: nsIDOMLSProgressEvent */
#define NS_IDOMLSPROGRESSEVENT_IID_STR "522fb528-f550-4e0c-8745-f784bba7cfbe"
#define NS_IDOMLSPROGRESSEVENT_IID \
{0x522fb528, 0xf550, 0x4e0c, \
{ 0x87, 0x45, 0xf7, 0x84, 0xbb, 0xa7, 0xcf, 0xbe }}
class NS_NO_VTABLE nsIDOMLSProgressEvent : public nsIDOMEvent {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMLSPROGRESSEVENT_IID)
/* readonly attribute nsIDOMLSInput input; */
NS_IMETHOD GetInput(nsIDOMLSInput * *aInput) = 0;
/* readonly attribute unsigned long position; */
NS_IMETHOD GetPosition(uint32_t *aPosition) = 0;
/* readonly attribute unsigned long totalSize; */
NS_IMETHOD GetTotalSize(uint32_t *aTotalSize) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMLSProgressEvent, NS_IDOMLSPROGRESSEVENT_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMLSPROGRESSEVENT \
NS_IMETHOD GetInput(nsIDOMLSInput * *aInput); \
NS_IMETHOD GetPosition(uint32_t *aPosition); \
NS_IMETHOD GetTotalSize(uint32_t *aTotalSize);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMLSPROGRESSEVENT(_to) \
NS_IMETHOD GetInput(nsIDOMLSInput * *aInput) { return _to GetInput(aInput); } \
NS_IMETHOD GetPosition(uint32_t *aPosition) { return _to GetPosition(aPosition); } \
NS_IMETHOD GetTotalSize(uint32_t *aTotalSize) { return _to GetTotalSize(aTotalSize); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDOMLSPROGRESSEVENT(_to) \
NS_IMETHOD GetInput(nsIDOMLSInput * *aInput) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInput(aInput); } \
NS_IMETHOD GetPosition(uint32_t *aPosition) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPosition(aPosition); } \
NS_IMETHOD GetTotalSize(uint32_t *aTotalSize) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTotalSize(aTotalSize); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDOMLSProgressEvent : public nsIDOMLSProgressEvent
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMLSPROGRESSEVENT
nsDOMLSProgressEvent();
private:
~nsDOMLSProgressEvent();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMLSProgressEvent, nsIDOMLSProgressEvent)
nsDOMLSProgressEvent::nsDOMLSProgressEvent()
{
/* member initializers and constructor code */
}
nsDOMLSProgressEvent::~nsDOMLSProgressEvent()
{
/* destructor code */
}
/* readonly attribute nsIDOMLSInput input; */
NS_IMETHODIMP nsDOMLSProgressEvent::GetInput(nsIDOMLSInput * *aInput)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long position; */
NS_IMETHODIMP nsDOMLSProgressEvent::GetPosition(uint32_t *aPosition)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long totalSize; */
NS_IMETHODIMP nsDOMLSProgressEvent::GetTotalSize(uint32_t *aTotalSize)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMLSProgressEvent_h__ */