comparison dwt/internal/mozilla/nsIDOMText.d @ 272:dd63eb078d7a

xpcom interfaces necessary for browser code -- source adapted from dxpcom project; these modules still need to be tested and then integrated into dwt browser.
author John Reimer<terminal.node@gmail.com>
date Fri, 18 Jul 2008 05:32:53 -0700
parents
children 942da4b6558a
comparison
equal deleted inserted replaced
271:d472fae79005 272:dd63eb078d7a
1 module dwt.internal.mozilla.nsIDOMText;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5
6 import dwt.internal.mozilla.nsIDOMCharacterData;
7
8 const char[] NS_IDOMTEXT_IID_STR = "a6cf9082-15b3-11d2-932e-00805f8add32";
9
10 const nsIID NS_IDOMTEXT_IID=
11 {0xa6cf9082, 0x15b3, 0x11d2,
12 [ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]};
13
14 extern(System)
15
16 interface nsIDOMText : nsIDOMCharacterData {
17
18 static const char[] IID_STR = NS_IDOMTEXT_IID_STR;
19 static const nsIID IID = NS_IDOMTEXT_IID;
20
21 nsresult SplitText(PRUint32 offset, nsIDOMText *_retval);
22
23 }
24