/usr/include/thunderbird/nsIPresentationControlChannel.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 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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIPresentationControlChannel.idl
*/
#ifndef __gen_nsIPresentationControlChannel_h__
#define __gen_nsIPresentationControlChannel_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 nsIArray; /* forward declaration */
class nsIInputStream; /* forward declaration */
/* starting interface: nsIPresentationChannelDescription */
#define NS_IPRESENTATIONCHANNELDESCRIPTION_IID_STR "ae318e05-2a4e-4f85-95c0-e8b191ad812c"
#define NS_IPRESENTATIONCHANNELDESCRIPTION_IID \
{0xae318e05, 0x2a4e, 0x4f85, \
{ 0x95, 0xc0, 0xe8, 0xb1, 0x91, 0xad, 0x81, 0x2c }}
class NS_NO_VTABLE nsIPresentationChannelDescription : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRESENTATIONCHANNELDESCRIPTION_IID)
enum {
TYPE_TCP = 1U,
TYPE_DATACHANNEL = 2U
};
/* readonly attribute uint8_t type; */
NS_IMETHOD GetType(uint8_t *aType) = 0;
/* readonly attribute nsIArray tcpAddress; */
NS_IMETHOD GetTcpAddress(nsIArray * *aTcpAddress) = 0;
/* readonly attribute uint16_t tcpPort; */
NS_IMETHOD GetTcpPort(uint16_t *aTcpPort) = 0;
/* readonly attribute DOMString dataChannelSDP; */
NS_IMETHOD GetDataChannelSDP(nsAString & aDataChannelSDP) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPresentationChannelDescription, NS_IPRESENTATIONCHANNELDESCRIPTION_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPRESENTATIONCHANNELDESCRIPTION \
NS_IMETHOD GetType(uint8_t *aType) override; \
NS_IMETHOD GetTcpAddress(nsIArray * *aTcpAddress) override; \
NS_IMETHOD GetTcpPort(uint16_t *aTcpPort) override; \
NS_IMETHOD GetDataChannelSDP(nsAString & aDataChannelSDP) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPRESENTATIONCHANNELDESCRIPTION(_to) \
NS_IMETHOD GetType(uint8_t *aType) override { return _to GetType(aType); } \
NS_IMETHOD GetTcpAddress(nsIArray * *aTcpAddress) override { return _to GetTcpAddress(aTcpAddress); } \
NS_IMETHOD GetTcpPort(uint16_t *aTcpPort) override { return _to GetTcpPort(aTcpPort); } \
NS_IMETHOD GetDataChannelSDP(nsAString & aDataChannelSDP) override { return _to GetDataChannelSDP(aDataChannelSDP); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPRESENTATIONCHANNELDESCRIPTION(_to) \
NS_IMETHOD GetType(uint8_t *aType) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
NS_IMETHOD GetTcpAddress(nsIArray * *aTcpAddress) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTcpAddress(aTcpAddress); } \
NS_IMETHOD GetTcpPort(uint16_t *aTcpPort) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetTcpPort(aTcpPort); } \
NS_IMETHOD GetDataChannelSDP(nsAString & aDataChannelSDP) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDataChannelSDP(aDataChannelSDP); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPresentationChannelDescription : public nsIPresentationChannelDescription
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPRESENTATIONCHANNELDESCRIPTION
nsPresentationChannelDescription();
private:
~nsPresentationChannelDescription();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsPresentationChannelDescription, nsIPresentationChannelDescription)
nsPresentationChannelDescription::nsPresentationChannelDescription()
{
/* member initializers and constructor code */
}
nsPresentationChannelDescription::~nsPresentationChannelDescription()
{
/* destructor code */
}
/* readonly attribute uint8_t type; */
NS_IMETHODIMP nsPresentationChannelDescription::GetType(uint8_t *aType)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIArray tcpAddress; */
NS_IMETHODIMP nsPresentationChannelDescription::GetTcpAddress(nsIArray * *aTcpAddress)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute uint16_t tcpPort; */
NS_IMETHODIMP nsPresentationChannelDescription::GetTcpPort(uint16_t *aTcpPort)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute DOMString dataChannelSDP; */
NS_IMETHODIMP nsPresentationChannelDescription::GetDataChannelSDP(nsAString & aDataChannelSDP)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIPresentationControlChannelListener */
#define NS_IPRESENTATIONCONTROLCHANNELLISTENER_IID_STR "d0cdc638-a9d5-4bcd-838c-3aed7c3f2a6b"
#define NS_IPRESENTATIONCONTROLCHANNELLISTENER_IID \
{0xd0cdc638, 0xa9d5, 0x4bcd, \
{ 0x83, 0x8c, 0x3a, 0xed, 0x7c, 0x3f, 0x2a, 0x6b }}
class NS_NO_VTABLE nsIPresentationControlChannelListener : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRESENTATIONCONTROLCHANNELLISTENER_IID)
/* void onOffer (in nsIPresentationChannelDescription offer); */
NS_IMETHOD OnOffer(nsIPresentationChannelDescription *offer) = 0;
/* void onAnswer (in nsIPresentationChannelDescription answer); */
NS_IMETHOD OnAnswer(nsIPresentationChannelDescription *answer) = 0;
/* void notifyOpened (); */
NS_IMETHOD NotifyOpened(void) = 0;
/* void notifyClosed (in nsresult reason); */
NS_IMETHOD NotifyClosed(nsresult reason) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPresentationControlChannelListener, NS_IPRESENTATIONCONTROLCHANNELLISTENER_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPRESENTATIONCONTROLCHANNELLISTENER \
NS_IMETHOD OnOffer(nsIPresentationChannelDescription *offer) override; \
NS_IMETHOD OnAnswer(nsIPresentationChannelDescription *answer) override; \
NS_IMETHOD NotifyOpened(void) override; \
NS_IMETHOD NotifyClosed(nsresult reason) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPRESENTATIONCONTROLCHANNELLISTENER(_to) \
NS_IMETHOD OnOffer(nsIPresentationChannelDescription *offer) override { return _to OnOffer(offer); } \
NS_IMETHOD OnAnswer(nsIPresentationChannelDescription *answer) override { return _to OnAnswer(answer); } \
NS_IMETHOD NotifyOpened(void) override { return _to NotifyOpened(); } \
NS_IMETHOD NotifyClosed(nsresult reason) override { return _to NotifyClosed(reason); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPRESENTATIONCONTROLCHANNELLISTENER(_to) \
NS_IMETHOD OnOffer(nsIPresentationChannelDescription *offer) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnOffer(offer); } \
NS_IMETHOD OnAnswer(nsIPresentationChannelDescription *answer) override { return !_to ? NS_ERROR_NULL_POINTER : _to->OnAnswer(answer); } \
NS_IMETHOD NotifyOpened(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyOpened(); } \
NS_IMETHOD NotifyClosed(nsresult reason) override { return !_to ? NS_ERROR_NULL_POINTER : _to->NotifyClosed(reason); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPresentationControlChannelListener : public nsIPresentationControlChannelListener
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPRESENTATIONCONTROLCHANNELLISTENER
nsPresentationControlChannelListener();
private:
~nsPresentationControlChannelListener();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsPresentationControlChannelListener, nsIPresentationControlChannelListener)
nsPresentationControlChannelListener::nsPresentationControlChannelListener()
{
/* member initializers and constructor code */
}
nsPresentationControlChannelListener::~nsPresentationControlChannelListener()
{
/* destructor code */
}
/* void onOffer (in nsIPresentationChannelDescription offer); */
NS_IMETHODIMP nsPresentationControlChannelListener::OnOffer(nsIPresentationChannelDescription *offer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void onAnswer (in nsIPresentationChannelDescription answer); */
NS_IMETHODIMP nsPresentationControlChannelListener::OnAnswer(nsIPresentationChannelDescription *answer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void notifyOpened (); */
NS_IMETHODIMP nsPresentationControlChannelListener::NotifyOpened()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void notifyClosed (in nsresult reason); */
NS_IMETHODIMP nsPresentationControlChannelListener::NotifyClosed(nsresult reason)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
/* starting interface: nsIPresentationControlChannel */
#define NS_IPRESENTATIONCONTROLCHANNEL_IID_STR "6bff04b9-8e79-466f-9446-f969de646fd3"
#define NS_IPRESENTATIONCONTROLCHANNEL_IID \
{0x6bff04b9, 0x8e79, 0x466f, \
{ 0x94, 0x46, 0xf9, 0x69, 0xde, 0x64, 0x6f, 0xd3 }}
class NS_NO_VTABLE nsIPresentationControlChannel : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPRESENTATIONCONTROLCHANNEL_IID)
/* attribute nsIPresentationControlChannelListener listener; */
NS_IMETHOD GetListener(nsIPresentationControlChannelListener * *aListener) = 0;
NS_IMETHOD SetListener(nsIPresentationControlChannelListener *aListener) = 0;
/* void sendOffer (in nsIPresentationChannelDescription offer); */
NS_IMETHOD SendOffer(nsIPresentationChannelDescription *offer) = 0;
/* void sendAnswer (in nsIPresentationChannelDescription answer); */
NS_IMETHOD SendAnswer(nsIPresentationChannelDescription *answer) = 0;
/* void close (); */
NS_IMETHOD Close(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIPresentationControlChannel, NS_IPRESENTATIONCONTROLCHANNEL_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIPRESENTATIONCONTROLCHANNEL \
NS_IMETHOD GetListener(nsIPresentationControlChannelListener * *aListener) override; \
NS_IMETHOD SetListener(nsIPresentationControlChannelListener *aListener) override; \
NS_IMETHOD SendOffer(nsIPresentationChannelDescription *offer) override; \
NS_IMETHOD SendAnswer(nsIPresentationChannelDescription *answer) override; \
NS_IMETHOD Close(void) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIPRESENTATIONCONTROLCHANNEL(_to) \
NS_IMETHOD GetListener(nsIPresentationControlChannelListener * *aListener) override { return _to GetListener(aListener); } \
NS_IMETHOD SetListener(nsIPresentationControlChannelListener *aListener) override { return _to SetListener(aListener); } \
NS_IMETHOD SendOffer(nsIPresentationChannelDescription *offer) override { return _to SendOffer(offer); } \
NS_IMETHOD SendAnswer(nsIPresentationChannelDescription *answer) override { return _to SendAnswer(answer); } \
NS_IMETHOD Close(void) override { return _to Close(); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSIPRESENTATIONCONTROLCHANNEL(_to) \
NS_IMETHOD GetListener(nsIPresentationControlChannelListener * *aListener) override { return !_to ? NS_ERROR_NULL_POINTER : _to->GetListener(aListener); } \
NS_IMETHOD SetListener(nsIPresentationControlChannelListener *aListener) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SetListener(aListener); } \
NS_IMETHOD SendOffer(nsIPresentationChannelDescription *offer) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SendOffer(offer); } \
NS_IMETHOD SendAnswer(nsIPresentationChannelDescription *answer) override { return !_to ? NS_ERROR_NULL_POINTER : _to->SendAnswer(answer); } \
NS_IMETHOD Close(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Close(); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsPresentationControlChannel : public nsIPresentationControlChannel
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIPRESENTATIONCONTROLCHANNEL
nsPresentationControlChannel();
private:
~nsPresentationControlChannel();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsPresentationControlChannel, nsIPresentationControlChannel)
nsPresentationControlChannel::nsPresentationControlChannel()
{
/* member initializers and constructor code */
}
nsPresentationControlChannel::~nsPresentationControlChannel()
{
/* destructor code */
}
/* attribute nsIPresentationControlChannelListener listener; */
NS_IMETHODIMP nsPresentationControlChannel::GetListener(nsIPresentationControlChannelListener * *aListener)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsPresentationControlChannel::SetListener(nsIPresentationControlChannelListener *aListener)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void sendOffer (in nsIPresentationChannelDescription offer); */
NS_IMETHODIMP nsPresentationControlChannel::SendOffer(nsIPresentationChannelDescription *offer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void sendAnswer (in nsIPresentationChannelDescription answer); */
NS_IMETHODIMP nsPresentationControlChannel::SendAnswer(nsIPresentationChannelDescription *answer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void close (); */
NS_IMETHODIMP nsPresentationControlChannel::Close()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIPresentationControlChannel_h__ */
|