1 module org.eclipse.swt.internal.mozilla.nsIWeakReference; 2 3 import java.lang.all; 4 5 import org.eclipse.swt.internal.mozilla.Common; 6 import org.eclipse.swt.internal.mozilla.nsID; 7 import org.eclipse.swt.internal.mozilla.nsISupports; 8 9 /****************************************************************************** 10 11 ******************************************************************************/ 12 13 const char[] NS_IWEAKREFERENCE_IID_STR = "9188bc85-f92e-11d2-81ef-0060083a0bcf"; 14 15 const nsIID NS_IWEAKREFERENCE_IID= 16 {0x9188bc85, 0xf92e, 0x11d2, 17 [ 0x81, 0xef, 0x00, 0x60, 0x08, 0x3a, 0x0b, 0xcf ]}; 18 19 interface nsIWeakReference : nsISupports { 20 21 static const char[] IID_STR = NS_IWEAKREFERENCE_IID_STR; 22 static const nsIID IID = NS_IWEAKREFERENCE_IID; 23 24 extern(System): 25 nsresult QueryReferent(nsIID * uuid, void * *result); 26 27 } 28 29 /****************************************************************************** 30 31 ******************************************************************************/ 32 33 const char[] NS_ISUPPORTSWEAKREFERENCE_IID_STR = "9188bc86-f92e-11d2-81ef-0060083a0bcf"; 34 35 const nsIID NS_ISUPPORTSWEAKREFERENCE_IID= 36 {0x9188bc86, 0xf92e, 0x11d2, 37 [ 0x81, 0xef, 0x00, 0x60, 0x08, 0x3a, 0x0b, 0xcf ]}; 38 39 interface nsISupportsWeakReference : nsISupports { 40 41 static const char[] IID_STR = NS_ISUPPORTSWEAKREFERENCE_IID_STR; 42 static const nsIID IID = NS_ISUPPORTSWEAKREFERENCE_IID; 43 44 extern(System): 45 nsresult GetWeakReference(nsIWeakReference *_retval); 46 47 } 48