1 module org.eclipse.swt.internal.mozilla.nsIInterfaceRequestor; 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 const char[] NS_IINTERFACEREQUESTOR_IID_STR = "033a1470-8b2a-11d3-af88-00a024ffc08c"; 10 11 const nsIID NS_IINTERFACEREQUESTOR_IID= 12 {0x033a1470, 0x8b2a, 0x11d3, 13 [ 0xaf, 0x88, 0x00, 0xa0, 0x24, 0xff, 0xc0, 0x8c ]}; 14 15 interface nsIInterfaceRequestor : nsISupports { 16 17 static const char[] IID_STR = NS_IINTERFACEREQUESTOR_IID_STR; 18 static const nsIID IID = NS_IINTERFACEREQUESTOR_IID; 19 20 extern(System): 21 nsresult GetInterface(in nsIID * uuid, void * *result); 22 23 } 24