intl/uconv/idl/nsICurrentCharsetListener.idl

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

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

mercurial