|
Revision 327:b0d7eb5bd76c, 0.8 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.nsIDOMAttr; |
|---|
| 2 |
|
|---|
| 3 |
import dwt.internal.mozilla.Common; |
|---|
| 4 |
import dwt.internal.mozilla.nsID; |
|---|
| 5 |
import dwt.internal.mozilla.nsIDOMNode; |
|---|
| 6 |
import dwt.internal.mozilla.nsIDOMElement; |
|---|
| 7 |
import dwt.internal.mozilla.nsStringAPI; |
|---|
| 8 |
|
|---|
| 9 |
const char[] NS_IDOMATTR_IID_STR = "a6cf9070-15b3-11d2-932e-00805f8add32"; |
|---|
| 10 |
|
|---|
| 11 |
const nsIID NS_IDOMATTR_IID= |
|---|
| 12 |
{0xa6cf9070, 0x15b3, 0x11d2, |
|---|
| 13 |
[ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 ]}; |
|---|
| 14 |
|
|---|
| 15 |
interface nsIDOMAttr : nsIDOMNode { |
|---|
| 16 |
|
|---|
| 17 |
static const char[] IID_STR = NS_IDOMATTR_IID_STR; |
|---|
| 18 |
static const nsIID IID = NS_IDOMATTR_IID; |
|---|
| 19 |
|
|---|
| 20 |
extern(System): |
|---|
| 21 |
nsresult GetName(nsAString * aName); |
|---|
| 22 |
nsresult GetSpecified(PRBool *aSpecified); |
|---|
| 23 |
nsresult GetValue(nsAString * aValue); |
|---|
| 24 |
nsresult SetValue(nsAString * aValue); |
|---|
| 25 |
nsresult GetOwnerElement(nsIDOMElement *aOwnerElement); |
|---|
| 26 |
|
|---|
| 27 |
} |
|---|