|
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.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 |
interface nsIDOMText : nsIDOMCharacterData { |
|---|
| 15 |
|
|---|
| 16 |
static const char[] IID_STR = NS_IDOMTEXT_IID_STR; |
|---|
| 17 |
static const nsIID IID = NS_IDOMTEXT_IID; |
|---|
| 18 |
|
|---|
| 19 |
extern(System): |
|---|
| 20 |
nsresult SplitText(PRUint32 offset, nsIDOMText *_retval); |
|---|
| 21 |
|
|---|
| 22 |
} |
|---|