/usr/include/thunderbird/nsIIncrementalStreamLoader.h is in thunderbird-dev 1:52.8.0-1~deb8u1.
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 212 213 214 215 216 217 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIIncrementalStreamLoader.idl
*/
#ifndef __gen_nsIIncrementalStreamLoader_h__
#define __gen_nsIIncrementalStreamLoader_h__
#ifndef __gen_nsIStreamListener_h__
#include "nsIStreamListener.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIRequest; /* forward declaration */
class nsIIncrementalStreamLoader; /* forward declaration */
/* starting interface: nsIIncrementalStreamLoaderObserver */
#define NS_IINCREMENTALSTREAMLOADEROBSERVER_IID_STR "07c3d2cc-5454-4618-9f4f-cd93de9504a4"
#define NS_IINCREMENTALSTREAMLOADEROBSERVER_IID \
{0x07c3d2cc, 0x5454, 0x4618, \
{ 0x9f, 0x4f, 0xcd, 0x93, 0xde, 0x95, 0x04, 0xa4 }}
class NS_NO_VTABLE nsIIncrementalStreamLoaderObserver : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IINCREMENTALSTREAMLOADEROBSERVER_IID)
/* void onIncrementalData (in nsIIncrementalStreamLoader loader, in nsISupports ctxt, in unsigned long dataLength, [array, size_is (dataLength), const] in octet data, inout unsigned long consumedLength); */
NS_IMETHOD OnIncrementalData(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, uint32_t dataLength, const uint8_t *data, uint32_t *consumedLength) = 0;
/* void onStreamComplete (in nsIIncrementalStreamLoader loader, in nsISupports ctxt, in nsresult status, in unsigned long resultLength, [array, size_is (resultLength), const] in octet result); */
NS_IMETHOD OnStreamComplete(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, nsresult status, uint32_t resultLength, const uint8_t *result) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIIncrementalStreamLoaderObserver, NS_IINCREMENTALSTREAMLOADEROBSERVER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIINCREMENTALSTREAMLOADEROBSERVER \
NS_IMETHOD OnIncrementalData(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, uint32_t dataLength, const uint8_t *data, uint32_t *consumedLength) override; \
NS_IMETHOD OnStreamComplete(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, nsresult status, uint32_t resultLength, const uint8_t *result) 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_NSIINCREMENTALSTREAMLOADEROBSERVER \
NS_METHOD OnIncrementalData(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, uint32_t dataLength, const uint8_t *data, uint32_t *consumedLength); \
NS_METHOD OnStreamComplete(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, nsresult status, uint32_t resultLength, const uint8_t *result);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIINCREMENTALSTREAMLOADEROBSERVER(_to) \
NS_IMETHOD OnIncrementalData(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, uint32_t dataLength, const uint8_t *data, uint32_t *consumedLength) override { return _to OnIncrementalData(loader, ctxt, dataLength, data, consumedLength); } \
NS_IMETHOD OnStreamComplete(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, nsresult status, uint32_t resultLength, const uint8_t *result) override { return _to OnStreamComplete(loader, ctxt, status, resultLength, result); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIINCREMENTALSTREAMLOADEROBSERVER(_to) \
NS_IMETHOD OnIncrementalData(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, uint32_t dataLength, const uint8_t *data, uint32_t *consumedLength) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnIncrementalData(loader, ctxt, dataLength, data, consumedLength); } \
NS_IMETHOD OnStreamComplete(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, nsresult status, uint32_t resultLength, const uint8_t *result) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnStreamComplete(loader, ctxt, status, resultLength, result); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsIncrementalStreamLoaderObserver : public nsIIncrementalStreamLoaderObserver
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIINCREMENTALSTREAMLOADEROBSERVER
nsIncrementalStreamLoaderObserver();
private:
~nsIncrementalStreamLoaderObserver();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsIncrementalStreamLoaderObserver, nsIIncrementalStreamLoaderObserver)
nsIncrementalStreamLoaderObserver::nsIncrementalStreamLoaderObserver()
{
/* member initializers and constructor code */
}
nsIncrementalStreamLoaderObserver::~nsIncrementalStreamLoaderObserver()
{
/* destructor code */
}
/* void onIncrementalData (in nsIIncrementalStreamLoader loader, in nsISupports ctxt, in unsigned long dataLength, [array, size_is (dataLength), const] in octet data, inout unsigned long consumedLength); */
NS_IMETHODIMP nsIncrementalStreamLoaderObserver::OnIncrementalData(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, uint32_t dataLength, const uint8_t *data, uint32_t *consumedLength)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onStreamComplete (in nsIIncrementalStreamLoader loader, in nsISupports ctxt, in nsresult status, in unsigned long resultLength, [array, size_is (resultLength), const] in octet result); */
NS_IMETHODIMP nsIncrementalStreamLoaderObserver::OnStreamComplete(nsIIncrementalStreamLoader *loader, nsISupports *ctxt, nsresult status, uint32_t resultLength, const uint8_t *result)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIIncrementalStreamLoader */
#define NS_IINCREMENTALSTREAMLOADER_IID_STR "a023b060-ba23-431a-b449-2dd63e220554"
#define NS_IINCREMENTALSTREAMLOADER_IID \
{0xa023b060, 0xba23, 0x431a, \
{ 0xb4, 0x49, 0x2d, 0xd6, 0x3e, 0x22, 0x05, 0x54 }}
class NS_NO_VTABLE nsIIncrementalStreamLoader : public nsIStreamListener {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IINCREMENTALSTREAMLOADER_IID)
/* void init (in nsIIncrementalStreamLoaderObserver aObserver); */
NS_IMETHOD Init(nsIIncrementalStreamLoaderObserver *aObserver) = 0;
/* readonly attribute unsigned long numBytesRead; */
NS_IMETHOD GetNumBytesRead(uint32_t *aNumBytesRead) = 0;
/* readonly attribute nsIRequest request; */
NS_IMETHOD GetRequest(nsIRequest * *aRequest) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIIncrementalStreamLoader, NS_IINCREMENTALSTREAMLOADER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIINCREMENTALSTREAMLOADER \
NS_IMETHOD Init(nsIIncrementalStreamLoaderObserver *aObserver) override; \
NS_IMETHOD GetNumBytesRead(uint32_t *aNumBytesRead) override; \
NS_IMETHOD GetRequest(nsIRequest * *aRequest) 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_NSIINCREMENTALSTREAMLOADER \
NS_METHOD Init(nsIIncrementalStreamLoaderObserver *aObserver); \
NS_METHOD GetNumBytesRead(uint32_t *aNumBytesRead); \
NS_METHOD GetRequest(nsIRequest * *aRequest);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIINCREMENTALSTREAMLOADER(_to) \
NS_IMETHOD Init(nsIIncrementalStreamLoaderObserver *aObserver) override { return _to Init(aObserver); } \
NS_IMETHOD GetNumBytesRead(uint32_t *aNumBytesRead) override { return _to GetNumBytesRead(aNumBytesRead); } \
NS_IMETHOD GetRequest(nsIRequest * *aRequest) override { return _to GetRequest(aRequest); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIINCREMENTALSTREAMLOADER(_to) \
NS_IMETHOD Init(nsIIncrementalStreamLoaderObserver *aObserver) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(aObserver); } \
NS_IMETHOD GetNumBytesRead(uint32_t *aNumBytesRead) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNumBytesRead(aNumBytesRead); } \
NS_IMETHOD GetRequest(nsIRequest * *aRequest) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRequest(aRequest); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsIncrementalStreamLoader : public nsIIncrementalStreamLoader
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIINCREMENTALSTREAMLOADER
nsIncrementalStreamLoader();
private:
~nsIncrementalStreamLoader();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsIncrementalStreamLoader, nsIIncrementalStreamLoader)
nsIncrementalStreamLoader::nsIncrementalStreamLoader()
{
/* member initializers and constructor code */
}
nsIncrementalStreamLoader::~nsIncrementalStreamLoader()
{
/* destructor code */
}
/* void init (in nsIIncrementalStreamLoaderObserver aObserver); */
NS_IMETHODIMP nsIncrementalStreamLoader::Init(nsIIncrementalStreamLoaderObserver *aObserver)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long numBytesRead; */
NS_IMETHODIMP nsIncrementalStreamLoader::GetNumBytesRead(uint32_t *aNumBytesRead)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIRequest request; */
NS_IMETHODIMP nsIncrementalStreamLoader::GetRequest(nsIRequest * *aRequest)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIIncrementalStreamLoader_h__ */
|