123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- #include "nsISupports.idl"
- [scriptable, uuid(ae419e24-1dd1-11b2-b39a-d3e5e7073802)]
- interface nsIPrefLocalizedString : nsISupports
- {
-
- attribute wstring data
-
- wstring toString()
-
- void setDataWithLength(in unsigned long length,
- [size_is(length)] in wstring data)
- }
- %{C++
- #define NS_PREFLOCALIZEDSTRING_CID \
- { \
- 0x064d9cee, \
- 0x1dd2, \
- 0x11b2, \
- { 0x83, 0xe3, 0xd2, 0x5a, 0xb0, 0x19, 0x3c, 0x26 } \
- }
- #define NS_PREFLOCALIZEDSTRING_CONTRACTID "@mozilla.org/pref-localizedstring;1"
- #define NS_PREFLOCALIZEDSTRING_CLASSNAME "Pref LocalizedString"
- %}
|