root/dwt/internal/mozilla/nsIDOMEntityReference.d

Revision 327:b0d7eb5bd76c, 0.6 kB (checked in by John Reimer <terminal.node@gmail.com>, 3 years ago)

Adding Mozilla XPCOM interfaces from dwt-linux to dwt-win

Line 
1 module dwt.internal.mozilla.nsIDOMEntityReference;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5
6 import dwt.internal.mozilla.nsIDOMNode;
7
8 const char[] NS_IDOMENTITYREFERENCE_IID_STR = "a6cf907a-15b3-11d2-932e-00805f8add32";
9
10 const nsIID NS_IDOMENTITYREFERENCE_IID=
11   {0xa6cf907a, 0x15b3, 0x11d2,
12     [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
13
14 interface nsIDOMEntityReference : nsIDOMNode {
15
16   static const char[] IID_STR = NS_IDOMENTITYREFERENCE_IID_STR;
17   static const nsIID IID = NS_IDOMENTITYREFERENCE_IID;
18
19 extern(System):
20 }
Note: See TracBrowser for help on using the browser.