1 module org.eclipse.swt.internal.mozilla.nsICancelable; 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_ICANCELABLE_IID_STR = "d94ac0a0-bb18-46b8-844e-84159064b0bd"; 10 11 const nsIID NS_ICANCELABLE_IID= 12 {0xd94ac0a0, 0xbb18, 0x46b8, 13 [ 0x84, 0x4e, 0x84, 0x15, 0x90, 0x64, 0xb0, 0xbd ]}; 14 15 interface nsICancelable : nsISupports { 16 17 static const char[] IID_STR = NS_ICANCELABLE_IID_STR; 18 static const nsIID IID = NS_ICANCELABLE_IID; 19 20 extern(System): 21 nsresult Cancel(nsresult aReason); 22 } 23