comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIDOMEventGroup.d @ 0:6dd524f61e62

add dwt win and basic java stuff
author Frank Benoit <benoit@tionex.de>
date Mon, 02 Mar 2009 14:44:16 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6dd524f61e62
1 module org.eclipse.swt.internal.mozilla.nsIDOMEventGroup;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5 import org.eclipse.swt.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 interface nsIDOMEventGroup : nsISupports {
16
17 static const char[] IID_STR = NS_IDOMEVENTGROUP_IID_STR;
18 static const nsIID IID = NS_IDOMEVENTGROUP_IID;
19
20 extern(System):
21 nsresult IsSameEventGroup(nsIDOMEventGroup other, PRBool *_retval);
22
23 }
24