/usr/include/thunderbird/nsIRequest.h is in thunderbird-dev 1:38.6.0+build1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIRequest.idl
*/
#ifndef __gen_nsIRequest_h__
#define __gen_nsIRequest_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 nsILoadGroup; /* forward declaration */
typedef uint32_t nsLoadFlags;
/* starting interface: nsIRequest */
#define NS_IREQUEST_IID_STR "ef6bfbd2-fd46-48d8-96b7-9f8f0fd387fe"
#define NS_IREQUEST_IID \
{0xef6bfbd2, 0xfd46, 0x48d8, \
{ 0x96, 0xb7, 0x9f, 0x8f, 0x0f, 0xd3, 0x87, 0xfe }}
class NS_NO_VTABLE nsIRequest : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IREQUEST_IID)
/* readonly attribute AUTF8String name; */
NS_IMETHOD GetName(nsACString & aName) = 0;
/* boolean isPending (); */
NS_IMETHOD IsPending(bool *_retval) = 0;
/* readonly attribute nsresult status; */
NS_IMETHOD GetStatus(nsresult *aStatus) = 0;
/* void cancel (in nsresult aStatus); */
NS_IMETHOD Cancel(nsresult aStatus) = 0;
/* void suspend (); */
NS_IMETHOD Suspend(void) = 0;
/* void resume (); */
NS_IMETHOD Resume(void) = 0;
/* attribute nsILoadGroup loadGroup; */
NS_IMETHOD GetLoadGroup(nsILoadGroup * *aLoadGroup) = 0;
NS_IMETHOD SetLoadGroup(nsILoadGroup *aLoadGroup) = 0;
/* attribute nsLoadFlags loadFlags; */
NS_IMETHOD GetLoadFlags(nsLoadFlags *aLoadFlags) = 0;
NS_IMETHOD SetLoadFlags(nsLoadFlags aLoadFlags) = 0;
enum {
LOAD_REQUESTMASK = 65535U,
LOAD_NORMAL = 0U,
LOAD_BACKGROUND = 1U,
INHIBIT_PIPELINE = 64U,
INHIBIT_CACHING = 128U,
INHIBIT_PERSISTENT_CACHING = 256U,
LOAD_BYPASS_CACHE = 512U,
LOAD_FROM_CACHE = 1024U,
VALIDATE_ALWAYS = 2048U,
VALIDATE_NEVER = 4096U,
VALIDATE_ONCE_PER_SESSION = 8192U,
LOAD_ANONYMOUS = 16384U,
LOAD_FRESH_CONNECTION = 32768U
};
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIRequest, NS_IREQUEST_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIREQUEST \
NS_IMETHOD GetName(nsACString & aName) override; \
NS_IMETHOD IsPending(bool *_retval) override; \
NS_IMETHOD GetStatus(nsresult *aStatus) override; \
NS_IMETHOD Cancel(nsresult aStatus) override; \
NS_IMETHOD Suspend(void) override; \
NS_IMETHOD Resume(void) override; \
NS_IMETHOD GetLoadGroup(nsILoadGroup * *aLoadGroup) override; \
NS_IMETHOD SetLoadGroup(nsILoadGroup *aLoadGroup) override; \
NS_IMETHOD GetLoadFlags(nsLoadFlags *aLoadFlags) override; \
NS_IMETHOD SetLoadFlags(nsLoadFlags aLoadFlags) override; \
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIREQUEST(_to) \
NS_IMETHOD GetName(nsACString & aName) override { return _to GetName(aName); } \
NS_IMETHOD IsPending(bool *_retval) override { return _to IsPending(_retval); } \
NS_IMETHOD GetStatus(nsresult *aStatus) override { return _to GetStatus(aStatus); } \
NS_IMETHOD Cancel(nsresult aStatus) override { return _to Cancel(aStatus); } \
NS_IMETHOD Suspend(void) override { return _to Suspend(); } \
NS_IMETHOD Resume(void) override { return _to Resume(); } \
NS_IMETHOD GetLoadGroup(nsILoadGroup * *aLoadGroup) override { return _to GetLoadGroup(aLoadGroup); } \
NS_IMETHOD SetLoadGroup(nsILoadGroup *aLoadGroup) override { return _to SetLoadGroup(aLoadGroup); } \
NS_IMETHOD GetLoadFlags(nsLoadFlags *aLoadFlags) override { return _to GetLoadFlags(aLoadFlags); } \
NS_IMETHOD SetLoadFlags(nsLoadFlags aLoadFlags) override { return _to SetLoadFlags(aLoadFlags); } \
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIREQUEST(_to) \
NS_IMETHOD GetName(nsACString & aName) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetName(aName); } \
NS_IMETHOD IsPending(bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->IsPending(_retval); } \
NS_IMETHOD GetStatus(nsresult *aStatus) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStatus(aStatus); } \
NS_IMETHOD Cancel(nsresult aStatus) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Cancel(aStatus); } \
NS_IMETHOD Suspend(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Suspend(); } \
NS_IMETHOD Resume(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Resume(); } \
NS_IMETHOD GetLoadGroup(nsILoadGroup * *aLoadGroup) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLoadGroup(aLoadGroup); } \
NS_IMETHOD SetLoadGroup(nsILoadGroup *aLoadGroup) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLoadGroup(aLoadGroup); } \
NS_IMETHOD GetLoadFlags(nsLoadFlags *aLoadFlags) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLoadFlags(aLoadFlags); } \
NS_IMETHOD SetLoadFlags(nsLoadFlags aLoadFlags) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLoadFlags(aLoadFlags); } \
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsRequest : public nsIRequest
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIREQUEST
nsRequest();
private:
~nsRequest();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsRequest, nsIRequest)
nsRequest::nsRequest()
{
/* member initializers and constructor code */
}
nsRequest::~nsRequest()
{
/* destructor code */
}
/* readonly attribute AUTF8String name; */
NS_IMETHODIMP nsRequest::GetName(nsACString & aName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean isPending (); */
NS_IMETHODIMP nsRequest::IsPending(bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsresult status; */
NS_IMETHODIMP nsRequest::GetStatus(nsresult *aStatus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void cancel (in nsresult aStatus); */
NS_IMETHODIMP nsRequest::Cancel(nsresult aStatus)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void suspend (); */
NS_IMETHODIMP nsRequest::Suspend()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void resume (); */
NS_IMETHODIMP nsRequest::Resume()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsILoadGroup loadGroup; */
NS_IMETHODIMP nsRequest::GetLoadGroup(nsILoadGroup * *aLoadGroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsRequest::SetLoadGroup(nsILoadGroup *aLoadGroup)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsLoadFlags loadFlags; */
NS_IMETHODIMP nsRequest::GetLoadFlags(nsLoadFlags *aLoadFlags)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsRequest::SetLoadFlags(nsLoadFlags aLoadFlags)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIRequest_h__ */
|