The auto-generated file for the XULBroadcaster IDL.

This commit is contained in:
hyatt%netscape.com 1999-02-10 09:49:50 +00:00
Родитель 1cd092b40c
Коммит ad0a772d59
1 изменённых файлов: 58 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,58 @@
/* -*- 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.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.
*/
/* AUTO-GENERATED. DO NOT EDIT!!! */
#ifndef nsIDOMXULBroadcaster_h__
#define nsIDOMXULBroadcaster_h__
#include "nsISupports.h"
#include "nsString.h"
#include "nsIScriptContext.h"
class nsIDOMNode;
#define NS_IDOMXULBROADCASTER_IID \
{ 0x574ed81, 0xc088, 0x11d2, \
{ 0x96, 0xed, 0x0, 0x10, 0x4b, 0x7b, 0x7d, 0xeb } }
class nsIDOMXULBroadcaster : public nsISupports {
public:
static const nsIID& IID() { static nsIID iid = NS_IDOMXULBROADCASTER_IID; return iid; }
NS_IMETHOD AddUINode(nsIDOMNode* aUiNode)=0;
NS_IMETHOD RemoveUINode(nsIDOMNode* aUiNode)=0;
};
#define NS_DECL_IDOMXULBROADCASTER \
NS_IMETHOD AddUINode(nsIDOMNode* aUiNode); \
NS_IMETHOD RemoveUINode(nsIDOMNode* aUiNode); \
#define NS_FORWARD_IDOMXULBROADCASTER(_to) \
NS_IMETHOD AddUINode(nsIDOMNode* aUiNode) { return _to##AddUINode(aUiNode); } \
NS_IMETHOD RemoveUINode(nsIDOMNode* aUiNode) { return _to##RemoveUINode(aUiNode); } \
extern nsresult NS_InitXULBroadcasterClass(nsIScriptContext *aContext, void **aPrototype);
extern "C" nsresult NS_NewScriptXULBroadcaster(nsIScriptContext *aContext, nsISupports *aSupports, nsISupports *aParent, void **aReturn);
#endif // nsIDOMXULBroadcaster_h__