|
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/lib64/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/xpcom/threads/nsISupportsPriority.idl
*/
#ifndef __gen_nsISupportsPriority_h__
#define __gen_nsISupportsPriority_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
/* starting interface: nsISupportsPriority */
#define NS_ISUPPORTSPRIORITY_IID_STR "aa578b44-abd5-4c19-8b14-36d4de6fdc36"
#define NS_ISUPPORTSPRIORITY_IID \
{0xaa578b44, 0xabd5, 0x4c19, \
{ 0x8b, 0x14, 0x36, 0xd4, 0xde, 0x6f, 0xdc, 0x36 }}
class NS_NO_VTABLE nsISupportsPriority : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISUPPORTSPRIORITY_IID)
enum {
PRIORITY_HIGHEST = -20,
PRIORITY_HIGH = -10,
PRIORITY_NORMAL = 0,
PRIORITY_LOW = 10,
PRIORITY_LOWEST = 20
};
/* attribute long priority; */
NS_IMETHOD GetPriority(int32_t *aPriority) = 0;
NS_IMETHOD SetPriority(int32_t aPriority) = 0;
/* void adjustPriority (in long delta); */
NS_IMETHOD AdjustPriority(int32_t delta) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsISupportsPriority, NS_ISUPPORTSPRIORITY_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISUPPORTSPRIORITY \
NS_IMETHOD GetPriority(int32_t *aPriority); \
NS_IMETHOD SetPriority(int32_t aPriority); \
NS_IMETHOD AdjustPriority(int32_t delta);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISUPPORTSPRIORITY(_to) \
NS_IMETHOD GetPriority(int32_t *aPriority) { return _to GetPriority(aPriority); } \
NS_IMETHOD SetPriority(int32_t aPriority) { return _to SetPriority(aPriority); } \
NS_IMETHOD AdjustPriority(int32_t delta) { return _to AdjustPriority(delta); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISUPPORTSPRIORITY(_to) \
NS_IMETHOD GetPriority(int32_t *aPriority) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPriority(aPriority); } \
NS_IMETHOD SetPriority(int32_t aPriority) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPriority(aPriority); } \
NS_IMETHOD AdjustPriority(int32_t delta) { return !_to ? NS_ERROR_NULL_POINTER : _to->AdjustPriority(delta); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsSupportsPriority : public nsISupportsPriority
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISUPPORTSPRIORITY
nsSupportsPriority();
private:
~nsSupportsPriority();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsSupportsPriority, nsISupportsPriority)
nsSupportsPriority::nsSupportsPriority()
{
/* member initializers and constructor code */
}
nsSupportsPriority::~nsSupportsPriority()
{
/* destructor code */
}
/* attribute long priority; */
NS_IMETHODIMP nsSupportsPriority::GetPriority(int32_t *aPriority)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsSupportsPriority::SetPriority(int32_t aPriority)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void adjustPriority (in long delta); */
NS_IMETHODIMP nsSupportsPriority::AdjustPriority(int32_t delta)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsISupportsPriority_h__ */