New idl interface in the build; r=nhotta

This commit is contained in:
cata%netscape.com 2000-02-11 03:42:15 +00:00
parent 86789213df
commit b2cd1258cd
4 changed files with 42 additions and 1 deletions

View File

@ -1,2 +1,3 @@
nsITextToSubURI.idl
nsICurrentCharsetListener.idl

View File

@ -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

View File

@ -27,6 +27,7 @@ DEPTH=..\..\..
XPIDLSRCS = \
.\nsITextToSubURI.idl \
.\nsICurrentCharsetListener.idl \
$(NULL)

View 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);
};