/usr/include/thunderbird/nsIConverterInputStream.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIConverterInputStream.idl
*/
#ifndef __gen_nsIConverterInputStream_h__
#define __gen_nsIConverterInputStream_h__
#ifndef __gen_nsIUnicharInputStream_h__
#include "nsIUnicharInputStream.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
class nsIInputStream; /* forward declaration */
/* starting interface: nsIConverterInputStream */
#define NS_ICONVERTERINPUTSTREAM_IID_STR "fc66ffb6-5404-4908-a4a3-27f92fa0579d"
#define NS_ICONVERTERINPUTSTREAM_IID \
{0xfc66ffb6, 0x5404, 0x4908, \
{ 0xa4, 0xa3, 0x27, 0xf9, 0x2f, 0xa0, 0x57, 0x9d }}
class NS_NO_VTABLE nsIConverterInputStream : public nsIUnicharInputStream {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICONVERTERINPUTSTREAM_IID)
enum {
DEFAULT_REPLACEMENT_CHARACTER = 65533U
};
/* void init (in nsIInputStream aStream, in string aCharset, in long aBufferSize, in char16_t aReplacementChar); */
NS_IMETHOD Init(nsIInputStream *aStream, const char * aCharset, int32_t aBufferSize, char16_t aReplacementChar) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIConverterInputStream, NS_ICONVERTERINPUTSTREAM_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICONVERTERINPUTSTREAM \
NS_IMETHOD Init(nsIInputStream *aStream, const char * aCharset, int32_t aBufferSize, char16_t aReplacementChar) override;
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICONVERTERINPUTSTREAM(_to) \
NS_IMETHOD Init(nsIInputStream *aStream, const char * aCharset, int32_t aBufferSize, char16_t aReplacementChar) override { return _to Init(aStream, aCharset, aBufferSize, aReplacementChar); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICONVERTERINPUTSTREAM(_to) \
NS_IMETHOD Init(nsIInputStream *aStream, const char * aCharset, int32_t aBufferSize, char16_t aReplacementChar) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Init(aStream, aCharset, aBufferSize, aReplacementChar); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsConverterInputStream : public nsIConverterInputStream
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICONVERTERINPUTSTREAM
nsConverterInputStream();
private:
~nsConverterInputStream();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsConverterInputStream, nsIConverterInputStream)
nsConverterInputStream::nsConverterInputStream()
{
/* member initializers and constructor code */
}
nsConverterInputStream::~nsConverterInputStream()
{
/* destructor code */
}
/* void init (in nsIInputStream aStream, in string aCharset, in long aBufferSize, in char16_t aReplacementChar); */
NS_IMETHODIMP nsConverterInputStream::Init(nsIInputStream *aStream, const char * aCharset, int32_t aBufferSize, char16_t aReplacementChar)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIConverterInputStream_h__ */
|