view dwt/internal/mozilla/nsIInputStream.d @ 341:942da4b6558a

Ongoing fixup for compile
author John Reimer <terminal.node@gmail.com>
date Sun, 26 Oct 2008 21:19:51 -0700
parents 3dfa75c74ed2
children 9a4d7706df52
line wrap: on
line source

module dwt.internal.mozilla.nsIInputStream;

import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsISupports;

typedef nsresult function(nsIInputStream aInStream,
	void *aClosure,
	byte *aFromSegment,
	PRUint32 aToOffset,
	PRUint32 aCount,
	PRUint32 *aWriteCount) nsWriteSegmentFun;

const char[] NS_IINPUTSTREAM_IID_STR = "fa9c7f6c-61b3-11d4-9877-00c04fa0cf4a";

const nsIID NS_IINPUTSTREAM_IID= 
  {0xfa9c7f6c, 0x61b3, 0x11d4, 
    [ 0x98, 0x77, 0x00, 0xc0, 0x4f, 0xa0, 0xcf, 0x4a ]};

//extern(System)

interface nsIInputStream : nsISupports {

  static const char[] IID_STR = NS_IINPUTSTREAM_IID_STR;
  static const nsIID IID = NS_IINPUTSTREAM_IID;

  nsresult Close();
  nsresult Available(PRUint32 *_retval);
  nsresult Read(byte * aBuf, PRUint32 aCount, PRUint32 *_retval);
  nsresult ReadSegments(nsWriteSegmentFun aWriter, void * aClosure, PRUint32 aCount, PRUint32 *_retval);
  nsresult IsNonBlocking(PRBool *_retval);

}