зеркало из https://github.com/mozilla/pjs.git
43 строки
1.4 KiB
Plaintext
43 строки
1.4 KiB
Plaintext
/* -*- 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.
|
|
*/
|
|
|
|
/* This interface defines a registry entry for the networking libraries
|
|
* external module registry. */
|
|
|
|
#include "nsISupports.idl"
|
|
#include "nsINetNotify.idl"
|
|
|
|
interface nsIEventQueue;
|
|
interface nsINetModRegEntry;
|
|
|
|
%{ C++
|
|
// {F126BD90-1472-11d3-A15A-0050041CAF44}
|
|
#define NS_NETMODREGENTRY_CID \
|
|
{ 0xf126bd90, 0x1472, 0x11d3, { 0xa1, 0x5a, 0x0, 0x50, 0x4, 0x1c, 0xaf, 0x44 } }
|
|
%}
|
|
|
|
[scriptable, uuid(9F482BD0-1476-11d3-A15A-0050041CAF44)]
|
|
interface nsINetModRegEntry : nsISupports {
|
|
readonly attribute nsINetNotify mNotify;
|
|
readonly attribute nsIEventQueue mEventQ;
|
|
readonly attribute string mTopic;
|
|
readonly attribute nsCIDPtr mCID;
|
|
|
|
boolean Equals(in nsINetModRegEntry aEntry);
|
|
};
|