/usr/include/thunderbird/calICalendarSearchProvider.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/calICalendarSearchProvider.idl
*/
#ifndef __gen_calICalendarSearchProvider_h__
#define __gen_calICalendarSearchProvider_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 calIOperation; /* forward declaration */
class calIGenericOperationListener; /* forward declaration */
/* starting interface: calICalendarSearchProvider */
#define CALICALENDARSEARCHPROVIDER_IID_STR "306da1c9-db54-4ef3-b27e-fea709f638ff"
#define CALICALENDARSEARCHPROVIDER_IID \
{0x306da1c9, 0xdb54, 0x4ef3, \
{ 0xb2, 0x7e, 0xfe, 0xa7, 0x09, 0xf6, 0x38, 0xff }}
class NS_NO_VTABLE calICalendarSearchProvider : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(CALICALENDARSEARCHPROVIDER_IID)
enum {
HINT_EXACT_MATCH = 1U
};
/* calIOperation searchForCalendars (in AUTF8String aString, in unsigned long aHints, in unsigned long aMaxResults, in calIGenericOperationListener aListener); */
NS_IMETHOD SearchForCalendars(const nsACString & aString, uint32_t aHints, uint32_t aMaxResults, calIGenericOperationListener *aListener, calIOperation * *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(calICalendarSearchProvider, CALICALENDARSEARCHPROVIDER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_CALICALENDARSEARCHPROVIDER \
NS_IMETHOD SearchForCalendars(const nsACString & aString, uint32_t aHints, uint32_t aMaxResults, calIGenericOperationListener *aListener, calIOperation * *_retval) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_CALICALENDARSEARCHPROVIDER(_to) \
NS_IMETHOD SearchForCalendars(const nsACString & aString, uint32_t aHints, uint32_t aMaxResults, calIGenericOperationListener *aListener, calIOperation * *_retval) override { return _to SearchForCalendars(aString, aHints, aMaxResults, aListener, _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_CALICALENDARSEARCHPROVIDER(_to) \
NS_IMETHOD SearchForCalendars(const nsACString & aString, uint32_t aHints, uint32_t aMaxResults, calIGenericOperationListener *aListener, calIOperation * *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SearchForCalendars(aString, aHints, aMaxResults, aListener, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public calICalendarSearchProvider
{
public:
NS_DECL_ISUPPORTS
NS_DECL_CALICALENDARSEARCHPROVIDER
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, calICalendarSearchProvider)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* calIOperation searchForCalendars (in AUTF8String aString, in unsigned long aHints, in unsigned long aMaxResults, in calIGenericOperationListener aListener); */
NS_IMETHODIMP _MYCLASS_::SearchForCalendars(const nsACString & aString, uint32_t aHints, uint32_t aMaxResults, calIGenericOperationListener *aListener, calIOperation * *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: calICalendarSearchService */
#define CALICALENDARSEARCHSERVICE_IID_STR "2f2055ca-f558-4dc8-a1d4-11384a00e85c"
#define CALICALENDARSEARCHSERVICE_IID \
{0x2f2055ca, 0xf558, 0x4dc8, \
{ 0xa1, 0xd4, 0x11, 0x38, 0x4a, 0x00, 0xe8, 0x5c }}
class NS_NO_VTABLE calICalendarSearchService : public calICalendarSearchProvider {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(CALICALENDARSEARCHSERVICE_IID)
/* void getProviders (out uint32_t aCount, [array, size_is (aCount), retval] out calICalendarSearchProvider aProviders); */
NS_IMETHOD GetProviders(uint32_t *aCount, calICalendarSearchProvider * **aProviders) = 0;
/* void addProvider (in calICalendarSearchProvider aProvider); */
NS_IMETHOD AddProvider(calICalendarSearchProvider *aProvider) = 0;
/* void removeProvider (in calICalendarSearchProvider aProvider); */
NS_IMETHOD RemoveProvider(calICalendarSearchProvider *aProvider) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(calICalendarSearchService, CALICALENDARSEARCHSERVICE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_CALICALENDARSEARCHSERVICE \
NS_IMETHOD GetProviders(uint32_t *aCount, calICalendarSearchProvider * **aProviders) override; \
NS_IMETHOD AddProvider(calICalendarSearchProvider *aProvider) override; \
NS_IMETHOD RemoveProvider(calICalendarSearchProvider *aProvider) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_CALICALENDARSEARCHSERVICE(_to) \
NS_IMETHOD GetProviders(uint32_t *aCount, calICalendarSearchProvider * **aProviders) override { return _to GetProviders(aCount, aProviders); } \
NS_IMETHOD AddProvider(calICalendarSearchProvider *aProvider) override { return _to AddProvider(aProvider); } \
NS_IMETHOD RemoveProvider(calICalendarSearchProvider *aProvider) override { return _to RemoveProvider(aProvider); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_CALICALENDARSEARCHSERVICE(_to) \
NS_IMETHOD GetProviders(uint32_t *aCount, calICalendarSearchProvider * **aProviders) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetProviders(aCount, aProviders); } \
NS_IMETHOD AddProvider(calICalendarSearchProvider *aProvider) override { return !_to ? NS_ERROR_NULL_POINTER : _to->AddProvider(aProvider); } \
NS_IMETHOD RemoveProvider(calICalendarSearchProvider *aProvider) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveProvider(aProvider); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public calICalendarSearchService
{
public:
NS_DECL_ISUPPORTS
NS_DECL_CALICALENDARSEARCHSERVICE
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(_MYCLASS_, calICalendarSearchService)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* void getProviders (out uint32_t aCount, [array, size_is (aCount), retval] out calICalendarSearchProvider aProviders); */
NS_IMETHODIMP _MYCLASS_::GetProviders(uint32_t *aCount, calICalendarSearchProvider * **aProviders)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void addProvider (in calICalendarSearchProvider aProvider); */
NS_IMETHODIMP _MYCLASS_::AddProvider(calICalendarSearchProvider *aProvider)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void removeProvider (in calICalendarSearchProvider aProvider); */
NS_IMETHODIMP _MYCLASS_::RemoveProvider(calICalendarSearchProvider *aProvider)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_calICalendarSearchProvider_h__ */
|