root/dwt/internal/mozilla/nsIDOMCDATASection.d

Revision 327:b0d7eb5bd76c, 0.5 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.nsIDOMCDATASection;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5
6 import dwt.internal.mozilla.nsIDOMText;
7
8 const char[] NS_IDOMCDATASECTION_IID_STR = "a6cf9071-15b3-11d2-932e-00805f8add32";
9
10 const nsIID NS_IDOMCDATASECTION_IID=
11   {0xa6cf9071, 0x15b3, 0x11d2,
12     [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
13
14 interface nsIDOMCDATASection : nsIDOMText {
15
16 extern(System):
17   static const char[] IID_STR = NS_IDOMCDATASECTION_IID_STR;
18   static const nsIID IID = NS_IDOMCDATASECTION_IID;
19
20 }
Note: See TracBrowser for help on using the browser.