module org.eclipse.swt.internal.mozilla.nsIWebNavigationInfo; import java.lang.all; import org.eclipse.swt.internal.mozilla.Common; import org.eclipse.swt.internal.mozilla.nsID; import org.eclipse.swt.internal.mozilla.nsISupports; import org.eclipse.swt.internal.mozilla.nsIWebNavigation; import org.eclipse.swt.internal.mozilla.nsStringAPI; const char[] NS_IWEBNAVIGATIONINFO_IID_STR = "62a93afb-93a1-465c-84c8-0432264229de"; const nsIID NS_IWEBNAVIGATIONINFO_IID= {0x62a93afb, 0x93a1, 0x465c, [ 0x84, 0xc8, 0x04, 0x32, 0x26, 0x42, 0x29, 0xde ]}; interface nsIWebNavigationInfo : nsISupports { static const char[] IID_STR = NS_IWEBNAVIGATIONINFO_IID_STR; static const nsIID IID = NS_IWEBNAVIGATIONINFO_IID; extern(System): enum { UNSUPPORTED = 0U }; enum { IMAGE = 1U }; enum { PLUGIN = 2U }; enum { OTHER = 32768U }; nsresult IsTypeSupported(nsACString * aType, nsIWebNavigation aWebNav, PRUint32 *_retval); }