/usr/include/thunderbird/nsIUnicharOutputStream.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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl/nsIUnicharOutputStream.idl
*/
#ifndef __gen_nsIUnicharOutputStream_h__
#define __gen_nsIUnicharOutputStream_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
/* starting interface: nsIUnicharOutputStream */
#define NS_IUNICHAROUTPUTSTREAM_IID_STR "2d00b1bb-8b21-4a63-bcc6-7213f513ac2e"
#define NS_IUNICHAROUTPUTSTREAM_IID \
{0x2d00b1bb, 0x8b21, 0x4a63, \
{ 0xbc, 0xc6, 0x72, 0x13, 0xf5, 0x13, 0xac, 0x2e }}
class NS_NO_VTABLE nsIUnicharOutputStream : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IUNICHAROUTPUTSTREAM_IID)
/* boolean write (in unsigned long aCount, [array, size_is (aCount), const] in char16_t c); */
NS_IMETHOD Write(uint32_t aCount, const char16_t *c, bool *_retval) = 0;
/* boolean writeString (in AString str); */
NS_IMETHOD WriteString(const nsAString & str, bool *_retval) = 0;
/* void flush (); */
NS_IMETHOD Flush(void) = 0;
/* void close (); */
NS_IMETHOD Close(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIUnicharOutputStream, NS_IUNICHAROUTPUTSTREAM_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIUNICHAROUTPUTSTREAM \
NS_IMETHOD Write(uint32_t aCount, const char16_t *c, bool *_retval) override; \
NS_IMETHOD WriteString(const nsAString & str, bool *_retval) override; \
NS_IMETHOD Flush(void) 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_NSIUNICHAROUTPUTSTREAM(_to) \
NS_IMETHOD Write(uint32_t aCount, const char16_t *c, bool *_retval) override { return _to Write(aCount, c, _retval); } \
NS_IMETHOD WriteString(const nsAString & str, bool *_retval) override { return _to WriteString(str, _retval); } \
NS_IMETHOD Flush(void) override { return _to Flush(); } \
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_NSIUNICHAROUTPUTSTREAM(_to) \
NS_IMETHOD Write(uint32_t aCount, const char16_t *c, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Write(aCount, c, _retval); } \
NS_IMETHOD WriteString(const nsAString & str, bool *_retval) override { return !_to ? NS_ERROR_NULL_POINTER : _to->WriteString(str, _retval); } \
NS_IMETHOD Flush(void) override { return !_to ? NS_ERROR_NULL_POINTER : _to->Flush(); } \
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 nsUnicharOutputStream : public nsIUnicharOutputStream
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIUNICHAROUTPUTSTREAM
nsUnicharOutputStream();
private:
~nsUnicharOutputStream();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS(nsUnicharOutputStream, nsIUnicharOutputStream)
nsUnicharOutputStream::nsUnicharOutputStream()
{
/* member initializers and constructor code */
}
nsUnicharOutputStream::~nsUnicharOutputStream()
{
/* destructor code */
}
/* boolean write (in unsigned long aCount, [array, size_is (aCount), const] in char16_t c); */
NS_IMETHODIMP nsUnicharOutputStream::Write(uint32_t aCount, const char16_t *c, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* boolean writeString (in AString str); */
NS_IMETHODIMP nsUnicharOutputStream::WriteString(const nsAString & str, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void flush (); */
NS_IMETHODIMP nsUnicharOutputStream::Flush()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void close (); */
NS_IMETHODIMP nsUnicharOutputStream::Close()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIUnicharOutputStream_h__ */
|