comparison dwt/internal/mozilla/nsIWeakReference.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_IWEAKREFERENCE_IID= 13 const nsIID NS_IWEAKREFERENCE_IID=
14 {0x9188bc85, 0xf92e, 0x11d2, 14 {0x9188bc85, 0xf92e, 0x11d2,
15 [ 0x81, 0xef, 0x00, 0x60, 0x08, 0x3a, 0x0b, 0xcf ]}; 15 [ 0x81, 0xef, 0x00, 0x60, 0x08, 0x3a, 0x0b, 0xcf ]};
16 16
17 //extern(System)
18
19 interface nsIWeakReference : nsISupports { 17 interface nsIWeakReference : nsISupports {
20 18
21 static const char[] IID_STR = NS_IWEAKREFERENCE_IID_STR; 19 static const char[] IID_STR = NS_IWEAKREFERENCE_IID_STR;
22 static const nsIID IID = NS_IWEAKREFERENCE_IID; 20 static const nsIID IID = NS_IWEAKREFERENCE_IID;
23 21
22 extern(System):
24 nsresult QueryReferent(nsIID * uuid, void * *result); 23 nsresult QueryReferent(nsIID * uuid, void * *result);
25 24
26 } 25 }
27 26
28 /****************************************************************************** 27 /******************************************************************************
33 32
34 const nsIID NS_ISUPPORTSWEAKREFERENCE_IID= 33 const nsIID NS_ISUPPORTSWEAKREFERENCE_IID=
35 {0x9188bc86, 0xf92e, 0x11d2, 34 {0x9188bc86, 0xf92e, 0x11d2,
36 [ 0x81, 0xef, 0x00, 0x60, 0x08, 0x3a, 0x0b, 0xcf ]}; 35 [ 0x81, 0xef, 0x00, 0x60, 0x08, 0x3a, 0x0b, 0xcf ]};
37 36
38 //extern(System)
39
40 interface nsISupportsWeakReference : nsISupports { 37 interface nsISupportsWeakReference : nsISupports {
41 38
42 static const char[] IID_STR = NS_ISUPPORTSWEAKREFERENCE_IID_STR; 39 static const char[] IID_STR = NS_ISUPPORTSWEAKREFERENCE_IID_STR;
43 static const nsIID IID = NS_ISUPPORTSWEAKREFERENCE_IID; 40 static const nsIID IID = NS_ISUPPORTSWEAKREFERENCE_IID;
44 41
42 extern(System):
45 nsresult GetWeakReference(nsIWeakReference *_retval); 43 nsresult GetWeakReference(nsIWeakReference *_retval);
46 44
47 } 45 }
48 46