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.

     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/. */
     6 #include "nsISupports.idl"
     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 %}
    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 };

mercurial