comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIWebProgressListener2.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.nsIWebProgressListener2;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5
6 import org.eclipse.swt.internal.mozilla.nsIWebProgressListener;
7 import org.eclipse.swt.internal.mozilla.nsIWebProgress;
8 import org.eclipse.swt.internal.mozilla.nsIRequest;
9
10 const char[] NS_IWEBPROGRESSLISTENER2_IID_STR = "3f24610d-1e1f-4151-9d2e-239884742324";
11
12 const nsIID NS_IWEBPROGRESSLISTENER2_IID=
13 {0x3f24610d, 0x1e1f, 0x4151,
14 [ 0x9d, 0x2e, 0x23, 0x98, 0x84, 0x74, 0x23, 0x24 ]};
15
16 interface nsIWebProgressListener2 : nsIWebProgressListener {
17
18 static const char[] IID_STR = NS_IWEBPROGRESSLISTENER2_IID_STR;
19 static const nsIID IID = NS_IWEBPROGRESSLISTENER2_IID;
20
21 extern(System):
22 nsresult OnProgressChange64(nsIWebProgress aWebProgress, nsIRequest aRequest, PRInt64 aCurSelfProgress, PRInt64 aMaxSelfProgress, PRInt64 aCurTotalProgress, PRInt64 aMaxTotalProgress);
23
24 }
25