comparison dwt/internal/mozilla/nsIStreamListener.d @ 272:dd63eb078d7a

xpcom interfaces necessary for browser code -- source adapted from dxpcom project; these modules still need to be tested and then integrated into dwt browser.
author John Reimer<terminal.node@gmail.com>
date Fri, 18 Jul 2008 05:32:53 -0700
parents
children 942da4b6558a
comparison
equal deleted inserted replaced
271:d472fae79005 272:dd63eb078d7a
1 module dwt.internal.mozilla.nsIStreamListener;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6
7 import dwt.internal.mozilla.nsIRequestObserver;
8 import dwt.internal.mozilla.nsIRequest;
9 import dwt.internal.mozilla.nsIInputStream;
10
11 const char[] NS_ISTREAMLISTENER_IID_STR = "1a637020-1482-11d3-9333-00104ba0fd40";
12
13 const nsIID NS_ISTREAMLISTENER_IID=
14 {0x1a637020, 0x1482, 0x11d3,
15 [ 0x93, 0x33, 0x00, 0x10, 0x4b, 0xa0, 0xfd, 0x40 ]};
16
17 extern(System)
18
19 interface nsIStreamListener : nsIRequestObserver {
20
21 static const char[] IID_STR = NS_ISTREAMLISTENER_IID_STR;
22 static const nsIID IID = NS_ISTREAMLISTENER_IID;
23
24 nsresult OnDataAvailable(nsIRequest aRequest, nsISupports aContext, nsIInputStream aInputStream, PRUint32 aOffset, PRUint32 aCount);
25
26 }
27