|
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 #include "nsISupports.idl" |
|
7 |
|
8 |
|
9 %{C++ |
|
10 // {CF9428C1-DF50-11d3-9D0C-0050040007B2} |
|
11 #define NS_CURRENTCHARSETLISTENER_CID { 0xcf9428c1, 0xdf50, 0x11d3, { 0x9d, 0xc, 0x0, 0x50, 0x4, 0x0, 0x7, 0xb2 } } |
|
12 #define NS_ICURRENTCHARSETLISTENER_CONTRACTID "@mozilla.org/intl/currentcharsetlistener;1" |
|
13 %} |
|
14 |
|
15 [scriptable, uuid(CF9428C1-DF50-11d3-9D0C-0050040007B2)] |
|
16 interface nsICurrentCharsetListener : nsISupports |
|
17 { |
|
18 void SetCurrentCharset(in wstring charset); |
|
19 void SetCurrentMailCharset(in wstring charset); |
|
20 void SetCurrentComposerCharset(in wstring charset); |
|
21 }; |