mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-13 18:27:35 +00:00
New idl interface in the build; r=nhotta
This commit is contained in:
parent
86789213df
commit
b2cd1258cd
@ -1,2 +1,3 @@
|
||||
nsITextToSubURI.idl
|
||||
nsICurrentCharsetListener.idl
|
||||
|
||||
|
@ -28,7 +28,10 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = uconv
|
||||
|
||||
XPIDLSRCS = nsITextToSubURI.idl
|
||||
XPIDLSRCS = \
|
||||
nsITextToSubURI.idl \
|
||||
nsICurrentCharsetListener.idl \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
|
@ -27,6 +27,7 @@ DEPTH=..\..\..
|
||||
|
||||
XPIDLSRCS = \
|
||||
.\nsITextToSubURI.idl \
|
||||
.\nsICurrentCharsetListener.idl \
|
||||
$(NULL)
|
||||
|
||||
|
||||
|
36
intl/uconv/idl/nsICurrentCharsetListener.idl
Normal file
36
intl/uconv/idl/nsICurrentCharsetListener.idl
Normal file
@ -0,0 +1,36 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
*
|
||||
* The contents of this file are subject to the Netscape Public
|
||||
* License Version 1.1 (the "License"); you may not use this file
|
||||
* except in compliance with the License. You may obtain a copy of
|
||||
* the License at http://www.mozilla.org/NPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS
|
||||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
* implied. See the License for the specific language governing
|
||||
* rights and limitations under the License.
|
||||
*
|
||||
* The Original Code is mozilla.org code.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Netscape
|
||||
* Communications Corporation. Portions created by Netscape are
|
||||
* Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
*/
|
||||
|
||||
#include "nsISupports.idl"
|
||||
|
||||
|
||||
%{C++
|
||||
// {CF9428C1-DF50-11d3-9D0C-0050040007B2}
|
||||
#define NS_CURRENTCHARSETLISTENER_CID { 0xcf9428c1, 0xdf50, 0x11d3, { 0x9d, 0xc, 0x0, 0x50, 0x4, 0x0, 0x7, 0xb2 } }
|
||||
#define NS_ICURRENTCHARSETLISTENER_PROGID "component://netscape/intl/currentcharsetlistener"
|
||||
%}
|
||||
|
||||
[scriptable, uuid(CF9428C1-DF50-11d3-9D0C-0050040007B2)]
|
||||
interface nsICurrentCharsetListener : nsISupports
|
||||
{
|
||||
void SetCurrentCharset(in wstring charset);
|
||||
};
|
Loading…
Reference in New Issue
Block a user