Your IP : 216.73.216.48
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIThread.idl
*/
#ifndef __gen_nsIThread_h__
#define __gen_nsIThread_h__
#ifndef __gen_nsIEventTarget_h__
#include "nsIEventTarget.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: nsIThread */
#define NS_ITHREAD_IID_STR "594feb13-6164-4054-b5a1-ad62e10ea15d"
#define NS_ITHREAD_IID \
{0x594feb13, 0x6164, 0x4054, \
{ 0xb5, 0xa1, 0xad, 0x62, 0xe1, 0x0e, 0xa1, 0x5d }}
class NS_NO_VTABLE nsIThread : public nsIEventTarget {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ITHREAD_IID)
/* [noscript] readonly attribute PRThread PRThread; */
NS_IMETHOD GetPRThread(PRThread **aPRThread) = 0;
/* void shutdown (); */
NS_IMETHOD Shutdown(void) = 0;
/* boolean hasPendingEvents (); */
NS_IMETHOD HasPendingEvents(bool *_retval) = 0;
/* boolean processNextEvent (in boolean mayWait); */
NS_IMETHOD ProcessNextEvent(bool mayWait, bool *_retval) = 0;
/* void asyncShutdown (); */
NS_IMETHOD AsyncShutdown(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIThread, NS_ITHREAD_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSITHREAD \
NS_IMETHOD GetPRThread(PRThread **aPRThread) override; \
NS_IMETHOD Shutdown(void) override; \
NS_IMETHOD HasPendingEvents(bool *_retval) override; \
NS_IMETHOD ProcessNextEvent(bool mayWait, bool *_retval) override; \
NS_IMETHOD AsyncShutdown(void) 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_NSITHREAD \
NS_METHOD GetPRThread(PRThread **aPRThread); \
NS_METHOD Shutdown(void); \
NS_METHOD HasPendingEvents(bool *_retval); \
NS_METHOD ProcessNextEvent(bool mayWait, bool *_retval); \
NS_METHOD AsyncShutdown(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSITHREAD(_to) \
NS_IMETHOD GetPRThread(PRThread **aPRThread) override { return _to GetPRThread(aPRThread); } \
NS_IMETHOD Shutdown(void) override { return _to Shutdown(); } \
NS_IMETHOD HasPendingEvents(bool *_retval) override { return _to HasPendingEvents(_retval); } \
NS_IMETHOD ProcessNextEvent(bool mayWait, bool *_retval) override { return _to ProcessNextEvent(mayWait, _retval); } \
NS_IMETHOD AsyncShutdown(void) override { return _to AsyncShutdown(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSITHREAD(_to) \
NS_IMETHOD GetPRThread(PRThread **aPRThread) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPRThread(aPRThread); } \
NS_IMETHOD Shutdown(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Shutdown(); } \
NS_IMETHOD HasPendingEvents(bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->HasPendingEvents(_retval); } \
NS_IMETHOD ProcessNextEvent(bool mayWait, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->ProcessNextEvent(mayWait, _retval); } \
NS_IMETHOD AsyncShutdown(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AsyncShutdown(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsThread : public nsIThread
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSITHREAD
nsThread();
private:
~nsThread();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsThread, nsIThread)
nsThread::nsThread()
{
/* member initializers and constructor code */
}
nsThread::~nsThread()
{
/* destructor code */
}
/* [noscript] readonly attribute PRThread PRThread; */
NS_IMETHODIMP nsThread::GetPRThread(PRThread **aPRThread)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void shutdown (); */
NS_IMETHODIMP nsThread::Shutdown()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean hasPendingEvents (); */
NS_IMETHODIMP nsThread::HasPendingEvents(bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean processNextEvent (in boolean mayWait); */
NS_IMETHODIMP nsThread::ProcessNextEvent(bool mayWait, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void asyncShutdown (); */
NS_IMETHODIMP nsThread::AsyncShutdown()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIThread_h__ */