From a3c69e8b0f07b337ac23ff2e8309325757bf8817 Mon Sep 17 00:00:00 2001 From: "alecf%netscape.com" Date: Wed, 12 May 1999 04:37:56 +0000 Subject: [PATCH] IDL version of nsIUrlListener --- mailnews/base/public/nsIUrlListener.idl | 33 +++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 mailnews/base/public/nsIUrlListener.idl diff --git a/mailnews/base/public/nsIUrlListener.idl b/mailnews/base/public/nsIUrlListener.idl new file mode 100644 index 000000000000..97d00d5d31ff --- /dev/null +++ b/mailnews/base/public/nsIUrlListener.idl @@ -0,0 +1,33 @@ +/* -*- 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.0 (the "NPL"); you may not use this file except in + * compliance with the NPL. You may obtain a copy of the NPL at + * http://www.mozilla.org/NPL/ + * + * Software distributed under the NPL is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL + * for the specific language governing rights and limitations under the + * NPL. + * + * The Initial Developer of this code under the NPL is Netscape + * Communications Corporation. Portions created by Netscape are + * Copyright (C) 1998 Netscape Communications Corporation. All Rights + * Reserved. + */ + +#include "nsISupports.idl" + +interface nsIURL; + +%{C++ +#include "nsIURL.h" +%} + +[scriptable, uuid(47618220-D008-11d2-8069-006008128C4E)] +interface nsIUrlListener : nsISupports { + + void OnStartRunningUrl(in nsIURL url); + void OnStopRunningUrl(in nsIURL url, in nsresult aExitCode); + +};