view dwt/internal/mozilla/nsIStringEnumerator.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.nsIStringEnumerator;

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

import dwt.internal.mozilla.nsStringAPI;

/******************************************************************************

******************************************************************************/

const char[] NS_ISTRINGENUMERATOR_IID_STR = "50d3ef6c-9380-4f06-9fb2-95488f7d141c";

const nsIID NS_ISTRINGENUMERATOR_IID= 
  {0x50d3ef6c, 0x9380, 0x4f06, 
    [ 0x9f, 0xb2, 0x95, 0x48, 0x8f, 0x7d, 0x14, 0x1c ]};

//extern(System)

interface nsIStringEnumerator : nsISupports {

  static const char[] IID_STR = NS_ISTRINGENUMERATOR_IID_STR;
  static const nsIID IID = NS_ISTRINGENUMERATOR_IID;

  nsresult HasMore(PRBool *_retval);
  nsresult GetNext(nsAString * _retval);

}

/******************************************************************************

******************************************************************************/

const char[] NS_IUTF8STRINGENUMERATOR_IID_STR = "9bdf1010-3695-4907-95ed-83d0410ec307";

const nsIID NS_IUTF8STRINGENUMERATOR_IID= 
  {0x9bdf1010, 0x3695, 0x4907, 
    [ 0x95, 0xed, 0x83, 0xd0, 0x41, 0x0e, 0xc3, 0x07 ]};

//extern(System)

interface nsIUTF8StringEnumerator : nsISupports {

  static const char[] IID_STR = NS_IUTF8STRINGENUMERATOR_IID_STR;
  static const nsIID IID = NS_IUTF8STRINGENUMERATOR_IID;

  nsresult HasMore(PRBool *_retval);
  nsresult GetNext(nsACString * _retval);

}