/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- * * 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 Communicator client code. * * The Initial Developer of the Original Code is Netscape Communications * Corporation. Portions created by Netscape are * Copyright (C) 2000 Netscape Communications Corporation. All * Rights Reserved. * * Contributor(s): */ #include "nsISupports.idl" interface nsIMIMEInfo; interface nsIURL; %{C++ #include #define NS_INTERNETCONFIGSERVICE_CONTRACTID \ "@mozilla.org/mac/internet-config-service;1" %} native FSSpec(FSSpec); [uuid(9B8B9D80-5F4F-11D4-9696-0060083A0BCF)] interface nsIInternetConfigService : nsISupports { void launchURL(in string url); boolean hasMappingForMIMEType(in string mimetype); boolean hasProtocalHandler(in string protocol); // pass in a mime type or a file extension..... void fillInMIMEInfo(in string mimetype, in string aFileExtension, out nsIMIMEInfo mimeinfo); void getMIMEInfoFromExtension(in string aFileExt, out nsIMIMEInfo mimeinfo); void getMIMEInfoFromTypeCreator(in PRUint32 aType, in PRUint32 aCreator, in string aFileExt, out nsIMIMEInfo mimeInfo); void getDownloadFolder(out FSSpec fsspec); void getString(in string key, out string value); };