comparison dwt/internal/mozilla/nsIDOMUIEvent.d @ 348:9a4d7706df52

Test Update to fix linux XPCOM interface issues
author John Reimer <terminal.node@gmail.com>
date Fri, 31 Oct 2008 21:46:44 -0700
parents 942da4b6558a
children
comparison
equal deleted inserted replaced
347:ff6dd48f5248 348:9a4d7706df52
11 11
12 const nsIID NS_IDOMUIEVENT_IID= 12 const nsIID NS_IDOMUIEVENT_IID=
13 {0xa6cf90c3, 0x15b3, 0x11d2, 13 {0xa6cf90c3, 0x15b3, 0x11d2,
14 [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]}; 14 [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
15 15
16 //extern(System)
17
18 interface nsIDOMUIEvent : nsIDOMEvent { 16 interface nsIDOMUIEvent : nsIDOMEvent {
19 17
20 static const char[] IID_STR = NS_IDOMUIEVENT_IID_STR; 18 static const char[] IID_STR = NS_IDOMUIEVENT_IID_STR;
21 static const nsIID IID = NS_IDOMUIEVENT_IID; 19 static const nsIID IID = NS_IDOMUIEVENT_IID;
22 20
21 extern(System):
23 nsresult GetView(nsIDOMAbstractView *aView); 22 nsresult GetView(nsIDOMAbstractView *aView);
24 nsresult GetDetail(PRInt32 *aDetail); 23 nsresult GetDetail(PRInt32 *aDetail);
25 nsresult InitUIEvent(nsAString * typeArg, PRBool canBubbleArg, PRBool cancelableArg, nsIDOMAbstractView viewArg, PRInt32 detailArg); 24 nsresult InitUIEvent(nsAString * typeArg, PRBool canBubbleArg, PRBool cancelableArg, nsIDOMAbstractView viewArg, PRInt32 detailArg);
26 25
27 } 26 }