comparison dwt/internal/mozilla/nsIDOMEventGroup.d @ 291:b0bd1789106b

fix: added wrong directory :(
author John Reimer<terminal.node@gmail.com>
date Wed, 06 Aug 2008 18:29:44 -0700
parents dd63eb078d7a
children 942da4b6558a
comparison
equal deleted inserted replaced
290:4c1340edee0d 291:b0bd1789106b
1 module dwt.internal.mozilla.nsIDOMEventGroup;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6
7 alias PRUint64 DOMTimeStamp;
8
9 const char[] NS_IDOMEVENTGROUP_IID_STR = "33347bee-6620-4841-8152-36091ae80c7e";
10
11 const nsIID NS_IDOMEVENTGROUP_IID=
12 {0x33347bee, 0x6620, 0x4841,
13 [ 0x81, 0x52, 0x36, 0x09, 0x1a, 0xe8, 0x0c, 0x7e ]};
14
15 extern(System)
16
17 interface nsIDOMEventGroup : nsISupports {
18
19 static const char[] IID_STR = NS_IDOMEVENTGROUP_IID_STR;
20 static const nsIID IID = NS_IDOMEVENTGROUP_IID;
21
22 nsresult IsSameEventGroup(nsIDOMEventGroup other, PRBool *_retval);
23
24 }
25