|
Revision 327:b0d7eb5bd76c, 0.7 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.nsIDOMAbstractView; |
|---|
| 2 |
|
|---|
| 3 |
import dwt.internal.mozilla.Common; |
|---|
| 4 |
import dwt.internal.mozilla.nsID; |
|---|
| 5 |
import dwt.internal.mozilla.nsISupports; |
|---|
| 6 |
|
|---|
| 7 |
import dwt.internal.mozilla.nsIDOMDocumentView; |
|---|
| 8 |
|
|---|
| 9 |
alias PRUint64 DOMTimeStamp; |
|---|
| 10 |
|
|---|
| 11 |
const char[] NS_IDOMABSTRACTVIEW_IID_STR = "f51ebade-8b1a-11d3-aae7-0010830123b4"; |
|---|
| 12 |
|
|---|
| 13 |
const nsIID NS_IDOMABSTRACTVIEW_IID= |
|---|
| 14 |
{0xf51ebade, 0x8b1a, 0x11d3, |
|---|
| 15 |
[ 0xaa, 0xe7, 0x00, 0x10, 0x83, 0x01, 0x23, 0xb4 ]}; |
|---|
| 16 |
|
|---|
| 17 |
interface nsIDOMAbstractView : nsISupports { |
|---|
| 18 |
|
|---|
| 19 |
static const char[] IID_STR = NS_IDOMABSTRACTVIEW_IID_STR; |
|---|
| 20 |
static const nsIID IID = NS_IDOMABSTRACTVIEW_IID; |
|---|
| 21 |
|
|---|
| 22 |
extern(System): |
|---|
| 23 |
nsresult GetDocument(nsIDOMDocumentView *aDocument); |
|---|
| 24 |
|
|---|
| 25 |
} |
|---|