/usr/include/thunderbird-11.0.1/mozISpellI18NUtil.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.
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 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/extensions/spellcheck/idl/mozISpellI18NUtil.idl
*/
#ifndef __gen_mozISpellI18NUtil_h__
#define __gen_mozISpellI18NUtil_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: mozISpellI18NUtil */
#define MOZISPELLI18NUTIL_IID_STR "b075d5dc-1df1-441a-bebf-680d8caaa19c"
#define MOZISPELLI18NUTIL_IID \
{0xb075d5dc, 0x1df1, 0x441a, \
{ 0xbe, 0xbf, 0x68, 0x0d, 0x8c, 0xaa, 0xa1, 0x9c }}
class NS_NO_VTABLE NS_SCRIPTABLE mozISpellI18NUtil : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(MOZISPELLI18NUTIL_IID)
enum {
kCheck = 0U,
kSuggest = 1U
};
/* readonly attribute wstring language; */
NS_SCRIPTABLE NS_IMETHOD GetLanguage(PRUnichar * *aLanguage) = 0;
/* void getRootForm (in wstring word, in PRUint32 type, [array, size_is (count)] out wstring words, out PRUint32 count); */
NS_SCRIPTABLE NS_IMETHOD GetRootForm(const PRUnichar * word, PRUint32 type, PRUnichar * **words NS_OUTPARAM, PRUint32 *count NS_OUTPARAM) = 0;
/* void fromRootForm (in wstring word, [array, size_is (icount)] in wstring iwords, in PRUint32 icount, [array, size_is (ocount)] out wstring owords, out PRUint32 ocount); */
NS_SCRIPTABLE NS_IMETHOD FromRootForm(const PRUnichar * word, const PRUnichar * *iwords, PRUint32 icount, PRUnichar * **owords NS_OUTPARAM, PRUint32 *ocount NS_OUTPARAM) = 0;
/* void findNextWord (in wstring word, in PRUint32 length, in PRUint32 offset, out PRInt32 begin, out PRInt32 end); */
NS_SCRIPTABLE NS_IMETHOD FindNextWord(const PRUnichar * word, PRUint32 length, PRUint32 offset, PRInt32 *begin NS_OUTPARAM, PRInt32 *end NS_OUTPARAM) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(mozISpellI18NUtil, MOZISPELLI18NUTIL_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_MOZISPELLI18NUTIL \
NS_SCRIPTABLE NS_IMETHOD GetLanguage(PRUnichar * *aLanguage); \
NS_SCRIPTABLE NS_IMETHOD GetRootForm(const PRUnichar * word, PRUint32 type, PRUnichar * **words NS_OUTPARAM, PRUint32 *count NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD FromRootForm(const PRUnichar * word, const PRUnichar * *iwords, PRUint32 icount, PRUnichar * **owords NS_OUTPARAM, PRUint32 *ocount NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD FindNextWord(const PRUnichar * word, PRUint32 length, PRUint32 offset, PRInt32 *begin NS_OUTPARAM, PRInt32 *end NS_OUTPARAM);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_MOZISPELLI18NUTIL(_to) \
NS_SCRIPTABLE NS_IMETHOD GetLanguage(PRUnichar * *aLanguage) { return _to GetLanguage(aLanguage); } \
NS_SCRIPTABLE NS_IMETHOD GetRootForm(const PRUnichar * word, PRUint32 type, PRUnichar * **words NS_OUTPARAM, PRUint32 *count NS_OUTPARAM) { return _to GetRootForm(word, type, words, count); } \
NS_SCRIPTABLE NS_IMETHOD FromRootForm(const PRUnichar * word, const PRUnichar * *iwords, PRUint32 icount, PRUnichar * **owords NS_OUTPARAM, PRUint32 *ocount NS_OUTPARAM) { return _to FromRootForm(word, iwords, icount, owords, ocount); } \
NS_SCRIPTABLE NS_IMETHOD FindNextWord(const PRUnichar * word, PRUint32 length, PRUint32 offset, PRInt32 *begin NS_OUTPARAM, PRInt32 *end NS_OUTPARAM) { return _to FindNextWord(word, length, offset, begin, end); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_MOZISPELLI18NUTIL(_to) \
NS_SCRIPTABLE NS_IMETHOD GetLanguage(PRUnichar * *aLanguage) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLanguage(aLanguage); } \
NS_SCRIPTABLE NS_IMETHOD GetRootForm(const PRUnichar * word, PRUint32 type, PRUnichar * **words NS_OUTPARAM, PRUint32 *count NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRootForm(word, type, words, count); } \
NS_SCRIPTABLE NS_IMETHOD FromRootForm(const PRUnichar * word, const PRUnichar * *iwords, PRUint32 icount, PRUnichar * **owords NS_OUTPARAM, PRUint32 *ocount NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->FromRootForm(word, iwords, icount, owords, ocount); } \
NS_SCRIPTABLE NS_IMETHOD FindNextWord(const PRUnichar * word, PRUint32 length, PRUint32 offset, PRInt32 *begin NS_OUTPARAM, PRInt32 *end NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->FindNextWord(word, length, offset, begin, end); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class _MYCLASS_ : public mozISpellI18NUtil
{
public:
NS_DECL_ISUPPORTS
NS_DECL_MOZISPELLI18NUTIL
_MYCLASS_();
private:
~_MYCLASS_();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(_MYCLASS_, mozISpellI18NUtil)
_MYCLASS_::_MYCLASS_()
{
/* member initializers and constructor code */
}
_MYCLASS_::~_MYCLASS_()
{
/* destructor code */
}
/* readonly attribute wstring language; */
NS_IMETHODIMP _MYCLASS_::GetLanguage(PRUnichar * *aLanguage)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void getRootForm (in wstring word, in PRUint32 type, [array, size_is (count)] out wstring words, out PRUint32 count); */
NS_IMETHODIMP _MYCLASS_::GetRootForm(const PRUnichar * word, PRUint32 type, PRUnichar * **words NS_OUTPARAM, PRUint32 *count NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void fromRootForm (in wstring word, [array, size_is (icount)] in wstring iwords, in PRUint32 icount, [array, size_is (ocount)] out wstring owords, out PRUint32 ocount); */
NS_IMETHODIMP _MYCLASS_::FromRootForm(const PRUnichar * word, const PRUnichar * *iwords, PRUint32 icount, PRUnichar * **owords NS_OUTPARAM, PRUint32 *ocount NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void findNextWord (in wstring word, in PRUint32 length, in PRUint32 offset, out PRInt32 begin, out PRInt32 end); */
NS_IMETHODIMP _MYCLASS_::FindNextWord(const PRUnichar * word, PRUint32 length, PRUint32 offset, PRInt32 *begin NS_OUTPARAM, PRInt32 *end NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_mozISpellI18NUtil_h__ */
|