/usr/include/thunderbird/nsIDirectoryService.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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIDirectoryService.idl
*/
#ifndef __gen_nsIDirectoryService_h__
#define __gen_nsIDirectoryService_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 nsIFile; /* forward declaration */
class nsISimpleEnumerator; /* forward declaration */
/* starting interface: nsIDirectoryServiceProvider */
#define NS_IDIRECTORYSERVICEPROVIDER_IID_STR "bbf8cab0-d43a-11d3-8cc2-00609792278c"
#define NS_IDIRECTORYSERVICEPROVIDER_IID \
{0xbbf8cab0, 0xd43a, 0x11d3, \
{ 0x8c, 0xc2, 0x00, 0x60, 0x97, 0x92, 0x27, 0x8c }}
class NS_NO_VTABLE nsIDirectoryServiceProvider : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDIRECTORYSERVICEPROVIDER_IID)
/* nsIFile getFile (in string prop, out boolean persistent); */
NS_IMETHOD GetFile(const char * prop, bool *persistent, nsIFile * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDirectoryServiceProvider, NS_IDIRECTORYSERVICEPROVIDER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDIRECTORYSERVICEPROVIDER \
NS_IMETHOD GetFile(const char * prop, bool *persistent, nsIFile * *_retval) 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_NSIDIRECTORYSERVICEPROVIDER \
NS_METHOD GetFile(const char * prop, bool *persistent, nsIFile * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDIRECTORYSERVICEPROVIDER(_to) \
NS_IMETHOD GetFile(const char * prop, bool *persistent, nsIFile * *_retval) override { return _to GetFile(prop, persistent, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDIRECTORYSERVICEPROVIDER(_to) \
NS_IMETHOD GetFile(const char * prop, bool *persistent, nsIFile * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFile(prop, persistent, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDirectoryServiceProvider : public nsIDirectoryServiceProvider
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDIRECTORYSERVICEPROVIDER
nsDirectoryServiceProvider();
private:
~nsDirectoryServiceProvider();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDirectoryServiceProvider, nsIDirectoryServiceProvider)
nsDirectoryServiceProvider::nsDirectoryServiceProvider()
{
/* member initializers and constructor code */
}
nsDirectoryServiceProvider::~nsDirectoryServiceProvider()
{
/* destructor code */
}
/* nsIFile getFile (in string prop, out boolean persistent); */
NS_IMETHODIMP nsDirectoryServiceProvider::GetFile(const char * prop, bool *persistent, nsIFile * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDirectoryServiceProvider2 */
#define NS_IDIRECTORYSERVICEPROVIDER2_IID_STR "2f977d4b-5485-11d4-87e2-0010a4e75ef2"
#define NS_IDIRECTORYSERVICEPROVIDER2_IID \
{0x2f977d4b, 0x5485, 0x11d4, \
{ 0x87, 0xe2, 0x00, 0x10, 0xa4, 0xe7, 0x5e, 0xf2 }}
class NS_NO_VTABLE nsIDirectoryServiceProvider2 : public nsIDirectoryServiceProvider {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDIRECTORYSERVICEPROVIDER2_IID)
/* nsISimpleEnumerator getFiles (in string prop); */
NS_IMETHOD GetFiles(const char * prop, nsISimpleEnumerator * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDirectoryServiceProvider2, NS_IDIRECTORYSERVICEPROVIDER2_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDIRECTORYSERVICEPROVIDER2 \
NS_IMETHOD GetFiles(const char * prop, nsISimpleEnumerator * *_retval) 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_NSIDIRECTORYSERVICEPROVIDER2 \
NS_METHOD GetFiles(const char * prop, nsISimpleEnumerator * *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDIRECTORYSERVICEPROVIDER2(_to) \
NS_IMETHOD GetFiles(const char * prop, nsISimpleEnumerator * *_retval) override { return _to GetFiles(prop, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDIRECTORYSERVICEPROVIDER2(_to) \
NS_IMETHOD GetFiles(const char * prop, nsISimpleEnumerator * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFiles(prop, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDirectoryServiceProvider2 : public nsIDirectoryServiceProvider2
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDIRECTORYSERVICEPROVIDER2
nsDirectoryServiceProvider2();
private:
~nsDirectoryServiceProvider2();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDirectoryServiceProvider2, nsIDirectoryServiceProvider2)
nsDirectoryServiceProvider2::nsDirectoryServiceProvider2()
{
/* member initializers and constructor code */
}
nsDirectoryServiceProvider2::~nsDirectoryServiceProvider2()
{
/* destructor code */
}
/* nsISimpleEnumerator getFiles (in string prop); */
NS_IMETHODIMP nsDirectoryServiceProvider2::GetFiles(const char * prop, nsISimpleEnumerator * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIDirectoryService */
#define NS_IDIRECTORYSERVICE_IID_STR "57a66a60-d43a-11d3-8cc2-00609792278c"
#define NS_IDIRECTORYSERVICE_IID \
{0x57a66a60, 0xd43a, 0x11d3, \
{ 0x8c, 0xc2, 0x00, 0x60, 0x97, 0x92, 0x27, 0x8c }}
class NS_NO_VTABLE nsIDirectoryService : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDIRECTORYSERVICE_IID)
/* void init (); */
NS_IMETHOD Init(void) = 0;
/* void registerProvider (in nsIDirectoryServiceProvider prov); */
NS_IMETHOD RegisterProvider(nsIDirectoryServiceProvider *prov) = 0;
/* void unregisterProvider (in nsIDirectoryServiceProvider prov); */
NS_IMETHOD UnregisterProvider(nsIDirectoryServiceProvider *prov) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDirectoryService, NS_IDIRECTORYSERVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDIRECTORYSERVICE \
NS_IMETHOD Init(void) override; \
NS_IMETHOD RegisterProvider(nsIDirectoryServiceProvider *prov) override; \
NS_IMETHOD UnregisterProvider(nsIDirectoryServiceProvider *prov) 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_NSIDIRECTORYSERVICE \
NS_METHOD Init(void); \
NS_METHOD RegisterProvider(nsIDirectoryServiceProvider *prov); \
NS_METHOD UnregisterProvider(nsIDirectoryServiceProvider *prov);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDIRECTORYSERVICE(_to) \
NS_IMETHOD Init(void) override { return _to Init(); } \
NS_IMETHOD RegisterProvider(nsIDirectoryServiceProvider *prov) override { return _to RegisterProvider(prov); } \
NS_IMETHOD UnregisterProvider(nsIDirectoryServiceProvider *prov) override { return _to UnregisterProvider(prov); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIDIRECTORYSERVICE(_to) \
NS_IMETHOD Init(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(); } \
NS_IMETHOD RegisterProvider(nsIDirectoryServiceProvider *prov) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RegisterProvider(prov); } \
NS_IMETHOD UnregisterProvider(nsIDirectoryServiceProvider *prov) override { return !_to ? NS_ERROR_NULL_POINTER : _to->UnregisterProvider(prov); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsDirectoryService : public nsIDirectoryService
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDIRECTORYSERVICE
nsDirectoryService();
private:
~nsDirectoryService();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsDirectoryService, nsIDirectoryService)
nsDirectoryService::nsDirectoryService()
{
/* member initializers and constructor code */
}
nsDirectoryService::~nsDirectoryService()
{
/* destructor code */
}
/* void init (); */
NS_IMETHODIMP nsDirectoryService::Init()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void registerProvider (in nsIDirectoryServiceProvider prov); */
NS_IMETHODIMP nsDirectoryService::RegisterProvider(nsIDirectoryServiceProvider *prov)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void unregisterProvider (in nsIDirectoryServiceProvider prov); */
NS_IMETHODIMP nsDirectoryService::UnregisterProvider(nsIDirectoryServiceProvider *prov)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDirectoryService_h__ */
|