comparison dwt/internal/mozilla/nsIWebProgressListener2.d @ 291:b0bd1789106b

fix: added wrong directory :(
author John Reimer<terminal.node@gmail.com>
date Wed, 06 Aug 2008 18:29:44 -0700
parents dd63eb078d7a
children 942da4b6558a
comparison
equal deleted inserted replaced
290:4c1340edee0d 291:b0bd1789106b
1 module dwt.internal.mozilla.nsIWebProgressListener2;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5
6 import dwt.internal.mozilla.nsIWebProgressListener;
7 import dwt.internal.mozilla.nsIWebProgress;
8 import dwt.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 extern(System)
17
18 interface nsIWebProgressListener2 : nsIWebProgressListener {
19
20 static const char[] IID_STR = NS_IWEBPROGRESSLISTENER2_IID_STR;
21 static const nsIID IID = NS_IWEBPROGRESSLISTENER2_IID;
22
23 nsresult OnProgressChange64(nsIWebProgress aWebProgress, nsIRequest aRequest, PRInt64 aCurSelfProgress, PRInt64 aMaxSelfProgress, PRInt64 aCurTotalProgress, PRInt64 aMaxTotalProgress);
24
25 }
26