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

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

module dwt.internal.mozilla.nsISimpleEnumerator;

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

const char[] NS_ISIMPLEENUMERATOR_IID_STR = "d1899240-f9d2-11d2-bdd6-000064657374";

const nsIID NS_ISIMPLEENUMERATOR_IID= 
  {0xd1899240, 0xf9d2, 0x11d2, 
    [ 0xbd, 0xd6, 0x00, 0x00, 0x64, 0x65, 0x73, 0x74 ]};

//extern(System)

interface nsISimpleEnumerator : nsISupports {

  static const char[] IID_STR = NS_ISIMPLEENUMERATOR_IID_STR;
  static const nsIID IID = NS_ISIMPLEENUMERATOR_IID;

  nsresult HasMoreElements(PRBool *_retval);
  nsresult GetNext(nsISupports *_retval);

}