comparison dwt/internal/mozilla/nsIDOMWindowCollection.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
12 12
13 const nsIID NS_IDOMWINDOWCOLLECTION_IID= 13 const nsIID NS_IDOMWINDOWCOLLECTION_IID=
14 {0xa6cf906f, 0x15b3, 0x11d2, 14 {0xa6cf906f, 0x15b3, 0x11d2,
15 [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]}; 15 [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
16 16
17 //extern(System)
18
19 interface nsIDOMWindowCollection : nsISupports { 17 interface nsIDOMWindowCollection : nsISupports {
20 18
21 static const char[] IID_STR = NS_IDOMWINDOWCOLLECTION_IID_STR; 19 static const char[] IID_STR = NS_IDOMWINDOWCOLLECTION_IID_STR;
22 static const nsIID IID = NS_IDOMWINDOWCOLLECTION_IID; 20 static const nsIID IID = NS_IDOMWINDOWCOLLECTION_IID;
23 21
22 extern(System):
24 nsresult GetLength(PRUint32 *aLength); 23 nsresult GetLength(PRUint32 *aLength);
25 nsresult Item(PRUint32 index, nsIDOMWindow *_retval); 24 nsresult Item(PRUint32 index, nsIDOMWindow *_retval);
26 nsresult NamedItem(nsAString * name, nsIDOMWindow *_retval); 25 nsresult NamedItem(nsAString * name, nsIDOMWindow *_retval);
27 26
28 } 27 }