/usr/include/thunderbird/nsIMailWinSearchHelper.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIMailWinSearchHelper.idl
*/
#ifndef __gen_nsIMailWinSearchHelper_h__
#define __gen_nsIMailWinSearchHelper_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 */
/* starting interface: nsIMailWinSearchHelper */
#define NS_IMAILWINSEARCHHELPER_IID_STR "a65307b3-64f8-49fc-96a7-2cfc7d1f18ee"
#define NS_IMAILWINSEARCHHELPER_IID \
{0xa65307b3, 0x64f8, 0x49fc, \
{ 0x96, 0xa7, 0x2c, 0xfc, 0x7d, 0x1f, 0x18, 0xee }}
class NS_NO_VTABLE nsIMailWinSearchHelper : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IMAILWINSEARCHHELPER_IID)
/* readonly attribute boolean serviceRunning; */
NS_IMETHOD GetServiceRunning(bool *aServiceRunning) = 0;
/* readonly attribute boolean foldersInCrawlScope; */
NS_IMETHOD GetFoldersInCrawlScope(bool *aFoldersInCrawlScope) = 0;
/* void setFANCIBit (in nsIFile aFile, in boolean aBit, in boolean aRecurse); */
NS_IMETHOD SetFANCIBit(nsIFile *aFile, bool aBit, bool aRecurse) = 0;
/* readonly attribute boolean isFileAssociationSet; */
NS_IMETHOD GetIsFileAssociationSet(bool *aIsFileAssociationSet) = 0;
/* void setFileAssociation (); */
NS_IMETHOD SetFileAssociation(void) = 0;
/* void runSetup (in boolean aEnable); */
NS_IMETHOD RunSetup(bool aEnable) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIMailWinSearchHelper, NS_IMAILWINSEARCHHELPER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIMAILWINSEARCHHELPER \
NS_IMETHOD GetServiceRunning(bool *aServiceRunning) override; \
NS_IMETHOD GetFoldersInCrawlScope(bool *aFoldersInCrawlScope) override; \
NS_IMETHOD SetFANCIBit(nsIFile *aFile, bool aBit, bool aRecurse) override; \
NS_IMETHOD GetIsFileAssociationSet(bool *aIsFileAssociationSet) override; \
NS_IMETHOD SetFileAssociation(void) override; \
NS_IMETHOD RunSetup(bool aEnable) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIMAILWINSEARCHHELPER(_to) \
NS_IMETHOD GetServiceRunning(bool *aServiceRunning) override { return _to GetServiceRunning(aServiceRunning); } \
NS_IMETHOD GetFoldersInCrawlScope(bool *aFoldersInCrawlScope) override { return _to GetFoldersInCrawlScope(aFoldersInCrawlScope); } \
NS_IMETHOD SetFANCIBit(nsIFile *aFile, bool aBit, bool aRecurse) override { return _to SetFANCIBit(aFile, aBit, aRecurse); } \
NS_IMETHOD GetIsFileAssociationSet(bool *aIsFileAssociationSet) override { return _to GetIsFileAssociationSet(aIsFileAssociationSet); } \
NS_IMETHOD SetFileAssociation(void) override { return _to SetFileAssociation(); } \
NS_IMETHOD RunSetup(bool aEnable) override { return _to RunSetup(aEnable); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIMAILWINSEARCHHELPER(_to) \
NS_IMETHOD GetServiceRunning(bool *aServiceRunning) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetServiceRunning(aServiceRunning); } \
NS_IMETHOD GetFoldersInCrawlScope(bool *aFoldersInCrawlScope) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFoldersInCrawlScope(aFoldersInCrawlScope); } \
NS_IMETHOD SetFANCIBit(nsIFile *aFile, bool aBit, bool aRecurse) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFANCIBit(aFile, aBit, aRecurse); } \
NS_IMETHOD GetIsFileAssociationSet(bool *aIsFileAssociationSet) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsFileAssociationSet(aIsFileAssociationSet); } \
NS_IMETHOD SetFileAssociation(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetFileAssociation(); } \
NS_IMETHOD RunSetup(bool aEnable) override { return !_to ? NS_ERROR_NULL_POINTER : _to->RunSetup(aEnable); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsMailWinSearchHelper : public nsIMailWinSearchHelper
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIMAILWINSEARCHHELPER
nsMailWinSearchHelper();
private:
~nsMailWinSearchHelper();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsMailWinSearchHelper, nsIMailWinSearchHelper)
nsMailWinSearchHelper::nsMailWinSearchHelper()
{
/* member initializers and constructor code */
}
nsMailWinSearchHelper::~nsMailWinSearchHelper()
{
/* destructor code */
}
/* readonly attribute boolean serviceRunning; */
NS_IMETHODIMP nsMailWinSearchHelper::GetServiceRunning(bool *aServiceRunning)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean foldersInCrawlScope; */
NS_IMETHODIMP nsMailWinSearchHelper::GetFoldersInCrawlScope(bool *aFoldersInCrawlScope)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setFANCIBit (in nsIFile aFile, in boolean aBit, in boolean aRecurse); */
NS_IMETHODIMP nsMailWinSearchHelper::SetFANCIBit(nsIFile *aFile, bool aBit, bool aRecurse)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isFileAssociationSet; */
NS_IMETHODIMP nsMailWinSearchHelper::GetIsFileAssociationSet(bool *aIsFileAssociationSet)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setFileAssociation (); */
NS_IMETHODIMP nsMailWinSearchHelper::SetFileAssociation()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void runSetup (in boolean aEnable); */
NS_IMETHODIMP nsMailWinSearchHelper::RunSetup(bool aEnable)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIMailWinSearchHelper_h__ */
|