/usr/include/thunderbird/nsISHTransaction.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsISHTransaction.idl
*/
#ifndef __gen_nsISHTransaction_h__
#define __gen_nsISHTransaction_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 nsISHEntry; /* forward declaration */
/* starting interface: nsISHTransaction */
#define NS_ISHTRANSACTION_IID_STR "2edf705f-d252-4971-9f09-71dd0f760dc6"
#define NS_ISHTRANSACTION_IID \
{0x2edf705f, 0xd252, 0x4971, \
{ 0x9f, 0x09, 0x71, 0xdd, 0x0f, 0x76, 0x0d, 0xc6 }}
class NS_NO_VTABLE nsISHTransaction : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISHTRANSACTION_IID)
/* attribute nsISHEntry sHEntry; */
NS_IMETHOD GetSHEntry(nsISHEntry * *aSHEntry) = 0;
NS_IMETHOD SetSHEntry(nsISHEntry *aSHEntry) = 0;
/* attribute nsISHTransaction prev; */
NS_IMETHOD GetPrev(nsISHTransaction * *aPrev) = 0;
NS_IMETHOD SetPrev(nsISHTransaction *aPrev) = 0;
/* attribute nsISHTransaction next; */
NS_IMETHOD GetNext(nsISHTransaction * *aNext) = 0;
NS_IMETHOD SetNext(nsISHTransaction *aNext) = 0;
/* attribute boolean persist; */
NS_IMETHOD GetPersist(bool *aPersist) = 0;
NS_IMETHOD SetPersist(bool aPersist) = 0;
/* void create (in nsISHEntry aSHEntry, in nsISHTransaction aPrev); */
NS_IMETHOD Create(nsISHEntry *aSHEntry, nsISHTransaction *aPrev) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsISHTransaction, NS_ISHTRANSACTION_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISHTRANSACTION \
NS_IMETHOD GetSHEntry(nsISHEntry * *aSHEntry) override; \
NS_IMETHOD SetSHEntry(nsISHEntry *aSHEntry) override; \
NS_IMETHOD GetPrev(nsISHTransaction * *aPrev) override; \
NS_IMETHOD SetPrev(nsISHTransaction *aPrev) override; \
NS_IMETHOD GetNext(nsISHTransaction * *aNext) override; \
NS_IMETHOD SetNext(nsISHTransaction *aNext) override; \
NS_IMETHOD GetPersist(bool *aPersist) override; \
NS_IMETHOD SetPersist(bool aPersist) override; \
NS_IMETHOD Create(nsISHEntry *aSHEntry, nsISHTransaction *aPrev) 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_NSISHTRANSACTION \
NS_METHOD GetSHEntry(nsISHEntry * *aSHEntry); \
NS_METHOD SetSHEntry(nsISHEntry *aSHEntry); \
NS_METHOD GetPrev(nsISHTransaction * *aPrev); \
NS_METHOD SetPrev(nsISHTransaction *aPrev); \
NS_METHOD GetNext(nsISHTransaction * *aNext); \
NS_METHOD SetNext(nsISHTransaction *aNext); \
NS_METHOD GetPersist(bool *aPersist); \
NS_METHOD SetPersist(bool aPersist); \
NS_METHOD Create(nsISHEntry *aSHEntry, nsISHTransaction *aPrev);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISHTRANSACTION(_to) \
NS_IMETHOD GetSHEntry(nsISHEntry * *aSHEntry) override { return _to GetSHEntry(aSHEntry); } \
NS_IMETHOD SetSHEntry(nsISHEntry *aSHEntry) override { return _to SetSHEntry(aSHEntry); } \
NS_IMETHOD GetPrev(nsISHTransaction * *aPrev) override { return _to GetPrev(aPrev); } \
NS_IMETHOD SetPrev(nsISHTransaction *aPrev) override { return _to SetPrev(aPrev); } \
NS_IMETHOD GetNext(nsISHTransaction * *aNext) override { return _to GetNext(aNext); } \
NS_IMETHOD SetNext(nsISHTransaction *aNext) override { return _to SetNext(aNext); } \
NS_IMETHOD GetPersist(bool *aPersist) override { return _to GetPersist(aPersist); } \
NS_IMETHOD SetPersist(bool aPersist) override { return _to SetPersist(aPersist); } \
NS_IMETHOD Create(nsISHEntry *aSHEntry, nsISHTransaction *aPrev) override { return _to Create(aSHEntry, aPrev); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISHTRANSACTION(_to) \
NS_IMETHOD GetSHEntry(nsISHEntry * *aSHEntry) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSHEntry(aSHEntry); } \
NS_IMETHOD SetSHEntry(nsISHEntry *aSHEntry) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSHEntry(aSHEntry); } \
NS_IMETHOD GetPrev(nsISHTransaction * *aPrev) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPrev(aPrev); } \
NS_IMETHOD SetPrev(nsISHTransaction *aPrev) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPrev(aPrev); } \
NS_IMETHOD GetNext(nsISHTransaction * *aNext) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetNext(aNext); } \
NS_IMETHOD SetNext(nsISHTransaction *aNext) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetNext(aNext); } \
NS_IMETHOD GetPersist(bool *aPersist) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPersist(aPersist); } \
NS_IMETHOD SetPersist(bool aPersist) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetPersist(aPersist); } \
NS_IMETHOD Create(nsISHEntry *aSHEntry, nsISHTransaction *aPrev) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Create(aSHEntry, aPrev); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsSHTransaction : public nsISHTransaction
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISHTRANSACTION
nsSHTransaction();
private:
~nsSHTransaction();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsSHTransaction, nsISHTransaction)
nsSHTransaction::nsSHTransaction()
{
/* member initializers and constructor code */
}
nsSHTransaction::~nsSHTransaction()
{
/* destructor code */
}
/* attribute nsISHEntry sHEntry; */
NS_IMETHODIMP nsSHTransaction::GetSHEntry(nsISHEntry * *aSHEntry)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsSHTransaction::SetSHEntry(nsISHEntry *aSHEntry)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsISHTransaction prev; */
NS_IMETHODIMP nsSHTransaction::GetPrev(nsISHTransaction * *aPrev)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsSHTransaction::SetPrev(nsISHTransaction *aPrev)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute nsISHTransaction next; */
NS_IMETHODIMP nsSHTransaction::GetNext(nsISHTransaction * *aNext)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsSHTransaction::SetNext(nsISHTransaction *aNext)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute boolean persist; */
NS_IMETHODIMP nsSHTransaction::GetPersist(bool *aPersist)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsSHTransaction::SetPersist(bool aPersist)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void create (in nsISHEntry aSHEntry, in nsISHTransaction aPrev); */
NS_IMETHODIMP nsSHTransaction::Create(nsISHEntry *aSHEntry, nsISHTransaction *aPrev)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
// {BFD1A792-AD9F-11d3-BDC7-0050040A9B44}
#define NS_SHTRANSACTION_CID \
{0xbfd1a792, 0xad9f, 0x11d3, {0xbd, 0xc7, 0x0, 0x50, 0x4, 0xa, 0x9b, 0x44}}
#define NS_SHTRANSACTION_CONTRACTID \
"@mozilla.org/browser/session-history-transaction;1"
#endif /* __gen_nsISHTransaction_h__ */
|