|
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.nsIEventTarget; |
|---|
| 2 |
|
|---|
| 3 |
import dwt.internal.mozilla.Common; |
|---|
| 4 |
import dwt.internal.mozilla.nsISupports; |
|---|
| 5 |
import dwt.internal.mozilla.nsID; |
|---|
| 6 |
|
|---|
| 7 |
const char[] NS_IEVENTTARGET_IID_STR = "ea99ad5b-cc67-4efb-97c9-2ef620a59f2a"; |
|---|
| 8 |
|
|---|
| 9 |
const nsIID NS_IEVENTTARGET_IID= |
|---|
| 10 |
{0xea99ad5b, 0xcc67, 0x4efb, |
|---|
| 11 |
[ 0x97, 0xc9, 0x2e, 0xf6, 0x20, 0xa5, 0x9f, 0x2a ]}; |
|---|
| 12 |
|
|---|
| 13 |
interface nsIEventTarget : nsISupports { |
|---|
| 14 |
|
|---|
| 15 |
static const char[] IID_STR = NS_IEVENTTARGET_IID_STR; |
|---|
| 16 |
static const nsIID IID = NS_IEVENTTARGET_IID; |
|---|
| 17 |
|
|---|
| 18 |
extern(System): |
|---|
| 19 |
nsresult PostEvent(PLEvent * aEvent); |
|---|
| 20 |
nsresult IsOnCurrentThread(PRBool *_retval); |
|---|
| 21 |
} |
|---|