/usr/include/thunderbird/nsIStreamLoader.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIStreamLoader.idl
*/
#ifndef __gen_nsIStreamLoader_h__
#define __gen_nsIStreamLoader_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 nsIStreamLoader; /* forward declaration */
/* starting interface: nsIStreamLoaderObserver */
#define NS_ISTREAMLOADEROBSERVER_IID_STR "359f7990-d4e9-11d3-a1a5-0050041caf44"
#define NS_ISTREAMLOADEROBSERVER_IID \
{0x359f7990, 0xd4e9, 0x11d3, \
{ 0xa1, 0xa5, 0x00, 0x50, 0x04, 0x1c, 0xaf, 0x44 }}
class NS_NO_VTABLE nsIStreamLoaderObserver : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISTREAMLOADEROBSERVER_IID)
/* void onStreamComplete (in nsIStreamLoader loader, in nsISupports ctxt, in nsresult status, in unsigned long resultLength, [array, size_is (resultLength), const] in octet result); */
NS_IMETHOD OnStreamComplete(nsIStreamLoader *loader, nsISupports *ctxt, nsresult status, uint32_t resultLength, const uint8_t *result) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIStreamLoaderObserver, NS_ISTREAMLOADEROBSERVER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISTREAMLOADEROBSERVER \
NS_IMETHOD OnStreamComplete(nsIStreamLoader *loader, nsISupports *ctxt, nsresult status, uint32_t resultLength, const uint8_t *result) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISTREAMLOADEROBSERVER(_to) \
NS_IMETHOD OnStreamComplete(nsIStreamLoader *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_NSISTREAMLOADEROBSERVER(_to) \
NS_IMETHOD OnStreamComplete(nsIStreamLoader *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 nsStreamLoaderObserver : public nsIStreamLoaderObserver
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISTREAMLOADEROBSERVER
nsStreamLoaderObserver();
private:
~nsStreamLoaderObserver();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsStreamLoaderObserver, nsIStreamLoaderObserver)
nsStreamLoaderObserver::nsStreamLoaderObserver()
{
/* member initializers and constructor code */
}
nsStreamLoaderObserver::~nsStreamLoaderObserver()
{
/* destructor code */
}
/* void onStreamComplete (in nsIStreamLoader loader, in nsISupports ctxt, in nsresult status, in unsigned long resultLength, [array, size_is (resultLength), const] in octet result); */
NS_IMETHODIMP nsStreamLoaderObserver::OnStreamComplete(nsIStreamLoader *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: nsIStreamLoader */
#define NS_ISTREAMLOADER_IID_STR "8ea7e890-8211-11d9-8bde-f66bad1e3f3a"
#define NS_ISTREAMLOADER_IID \
{0x8ea7e890, 0x8211, 0x11d9, \
{ 0x8b, 0xde, 0xf6, 0x6b, 0xad, 0x1e, 0x3f, 0x3a }}
class NS_NO_VTABLE nsIStreamLoader : public nsIStreamListener {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISTREAMLOADER_IID)
/* void init (in nsIStreamLoaderObserver aObserver); */
NS_IMETHOD Init(nsIStreamLoaderObserver *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(nsIStreamLoader, NS_ISTREAMLOADER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISTREAMLOADER \
NS_IMETHOD Init(nsIStreamLoaderObserver *aObserver) override; \
NS_IMETHOD GetNumBytesRead(uint32_t *aNumBytesRead) override; \
NS_IMETHOD GetRequest(nsIRequest * *aRequest) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISTREAMLOADER(_to) \
NS_IMETHOD Init(nsIStreamLoaderObserver *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_NSISTREAMLOADER(_to) \
NS_IMETHOD Init(nsIStreamLoaderObserver *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 nsStreamLoader : public nsIStreamLoader
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISTREAMLOADER
nsStreamLoader();
private:
~nsStreamLoader();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsStreamLoader, nsIStreamLoader)
nsStreamLoader::nsStreamLoader()
{
/* member initializers and constructor code */
}
nsStreamLoader::~nsStreamLoader()
{
/* destructor code */
}
/* void init (in nsIStreamLoaderObserver aObserver); */
NS_IMETHODIMP nsStreamLoader::Init(nsIStreamLoaderObserver *aObserver)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute unsigned long numBytesRead; */
NS_IMETHODIMP nsStreamLoader::GetNumBytesRead(uint32_t *aNumBytesRead)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIRequest request; */
NS_IMETHODIMP nsStreamLoader::GetRequest(nsIRequest * *aRequest)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIStreamLoader_h__ */
|