comparison dwt/internal/mozilla/nsIEventTarget.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
8 8
9 const nsIID NS_IEVENTTARGET_IID= 9 const nsIID NS_IEVENTTARGET_IID=
10 {0xea99ad5b, 0xcc67, 0x4efb, 10 {0xea99ad5b, 0xcc67, 0x4efb,
11 [ 0x97, 0xc9, 0x2e, 0xf6, 0x20, 0xa5, 0x9f, 0x2a ]}; 11 [ 0x97, 0xc9, 0x2e, 0xf6, 0x20, 0xa5, 0x9f, 0x2a ]};
12 12
13 //extern(System)
14
15 interface nsIEventTarget : nsISupports { 13 interface nsIEventTarget : nsISupports {
16 14
17 static const char[] IID_STR = NS_IEVENTTARGET_IID_STR; 15 static const char[] IID_STR = NS_IEVENTTARGET_IID_STR;
18 static const nsIID IID = NS_IEVENTTARGET_IID; 16 static const nsIID IID = NS_IEVENTTARGET_IID;
19 17
18 extern(System):
20 nsresult PostEvent(PLEvent * aEvent); 19 nsresult PostEvent(PLEvent * aEvent);
21 nsresult IsOnCurrentThread(PRBool *_retval); 20 nsresult IsOnCurrentThread(PRBool *_retval);
22 } 21 }
23 22