Fixing the auto-generated file since the IDL changed.

git-svn-id: svn://10.0.0.236/trunk@20247 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hyatt%netscape.com
1999-02-10 10:15:47 +00:00
parent e1240ab078
commit f6d39212e9

View File

@@ -35,16 +35,20 @@ public:
static const nsIID& IID() { static nsIID iid = NS_IDOMXULBROADCASTLISTENER_IID; return iid; }
NS_IMETHOD GetBroadcaster(nsIDOMNode** aNode)=0;
NS_IMETHOD SetBroadcaster(nsIDOMNode* aNode)=0;
};
#define NS_DECL_IDOMXULBROADCASTLISTENER \
NS_IMETHOD GetBroadcaster(nsIDOMNode** aNode); \
NS_IMETHOD SetBroadcaster(nsIDOMNode* aNode); \
#define NS_FORWARD_IDOMXULBROADCASTLISTENER(_to) \
NS_IMETHOD GetBroadcaster(nsIDOMNode** aNode) { return _to##GetBroadcaster(aNode); } \
NS_IMETHOD SetBroadcaster(nsIDOMNode* aNode) { return _to##SetBroadcaster(aNode); } \
extern nsresult NS_InitXULBroadcastListenerClass(nsIScriptContext *aContext, void **aPrototype);