comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIWebNavigationInfo.d @ 0:6dd524f61e62

add dwt win and basic java stuff
author Frank Benoit <benoit@tionex.de>
date Mon, 02 Mar 2009 14:44:16 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6dd524f61e62
1 module org.eclipse.swt.internal.mozilla.nsIWebNavigationInfo;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5 import org.eclipse.swt.internal.mozilla.nsISupports;
6 import org.eclipse.swt.internal.mozilla.nsIWebNavigation;
7 import org.eclipse.swt.internal.mozilla.nsStringAPI;
8
9 const char[] NS_IWEBNAVIGATIONINFO_IID_STR = "62a93afb-93a1-465c-84c8-0432264229de";
10
11 const nsIID NS_IWEBNAVIGATIONINFO_IID=
12 {0x62a93afb, 0x93a1, 0x465c,
13 [ 0x84, 0xc8, 0x04, 0x32, 0x26, 0x42, 0x29, 0xde ]};
14
15 interface nsIWebNavigationInfo : nsISupports {
16
17 static const char[] IID_STR = NS_IWEBNAVIGATIONINFO_IID_STR;
18 static const nsIID IID = NS_IWEBNAVIGATIONINFO_IID;
19
20 extern(System):
21 enum { UNSUPPORTED = 0U };
22 enum { IMAGE = 1U };
23 enum { PLUGIN = 2U };
24 enum { OTHER = 32768U };
25
26 nsresult IsTypeSupported(nsACString * aType, nsIWebNavigation aWebNav, PRUint32 *_retval);
27
28 }
29