view dwt/internal/mozilla/nsIDOMEntityReference.d @ 327:b0d7eb5bd76c

Adding Mozilla XPCOM interfaces from dwt-linux to dwt-win
author John Reimer <terminal.node@gmail.com>
date Fri, 02 Jan 2009 17:45:10 -0800
parents
children
line wrap: on
line source

module dwt.internal.mozilla.nsIDOMEntityReference;

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

import dwt.internal.mozilla.nsIDOMNode;

const char[] NS_IDOMENTITYREFERENCE_IID_STR = "a6cf907a-15b3-11d2-932e-00805f8add32";

const nsIID NS_IDOMENTITYREFERENCE_IID= 
  {0xa6cf907a, 0x15b3, 0x11d2, 
    [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};

interface nsIDOMEntityReference : nsIDOMNode {

  static const char[] IID_STR = NS_IDOMENTITYREFERENCE_IID_STR;
  static const nsIID IID = NS_IDOMENTITYREFERENCE_IID;

extern(System):
}