1999-05-30 04:13:05 +04:00
/* -*- Mode: IDL; 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"
#include "nsIUrlListener.idl"
#include "nsINntpIncomingServer.idl"
1999-06-23 07:29:44 +04:00
interface nsIURI;
1999-05-30 04:13:05 +04:00
interface nsIStreamListener;
1999-06-06 02:11:38 +04:00
interface nsISupportsArray;
1999-09-16 01:29:30 +04:00
interface nsIFileSpec;
1999-05-30 04:13:05 +04:00
[scriptable, uuid(4C9F90E0-E19B-11d2-806E-006008128C4E)]
interface nsINntpService : nsISupports {
1999-06-29 09:04:17 +04:00
string ConvertNewsgroupsString(in string newsgroupsStr);
1999-05-30 04:13:05 +04:00
1999-09-16 01:29:30 +04:00
nsIURI PostMessage (in nsIFileSpec fileToPost, in string newsgroupNames, in nsIUrlListener aUrlListener);
1999-05-30 04:13:05 +04:00
1999-06-23 07:29:44 +04:00
nsIURI GetNewNews (in nsINntpIncomingServer nntpServer, in string uri, in nsIUrlListener aUrlListener);
1999-05-30 04:13:05 +04:00
1999-06-23 07:29:44 +04:00
nsIURI CancelMessages (in string hostname, in string newsgroupname, in nsISupportsArray messages, in nsISupports aConsumer, in nsIUrlListener aUrlListener);
1999-05-30 04:13:05 +04:00
};