Adding idl for the chrome entry (used for enumeration of installed skins, packages and locales). r=gimpy

This commit is contained in:
hyatt%netscape.com 1999-11-30 09:37:58 +00:00
parent 682d9974ca
commit 2c2128d749
3 changed files with 39 additions and 0 deletions

View File

@ -31,6 +31,7 @@ XPIDL_MODULE= chrome
XPIDLSRCS = \
nsIChromeRegistry.idl \
nsIChromeEntry.idl \
$(NULL)
include $(topsrcdir)/config/rules.mk

View File

@ -25,6 +25,7 @@ XPIDL_MODULE=chrome
XPIDLSRCS = \
.\nsIChromeRegistry.idl \
.\nsIChromeEntry.idl \
$(NULL)
include <$(DEPTH)\config\rules.mak>

View File

@ -0,0 +1,37 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Mozilla 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/MPL/
*
* 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 the Mozilla browser.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s): hyatt and pav :)
*/
#include "nsISupports.idl"
[scriptable, uuid(C0E45041-A6C6-11d3-97FB-00400553EEF0)]
interface nsIChromeEntry : nsISupports
{
readonly attribute wstring name;
readonly attribute wstring displayText;
readonly attribute wstring versionNumber;
readonly attribute wstring author;
readonly attribute wstring siteURL;
readonly attribute wstring previewImageURL;
};
%{ C++
%}