|
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.nsIWindowCreator; |
|---|
| 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.nsIWebBrowserChrome; |
|---|
| 8 |
|
|---|
| 9 |
const char[] NS_IWINDOWCREATOR_IID_STR = "30465632-a777-44cc-90f9-8145475ef999"; |
|---|
| 10 |
|
|---|
| 11 |
const nsIID NS_IWINDOWCREATOR_IID= |
|---|
| 12 |
{0x30465632, 0xa777, 0x44cc, |
|---|
| 13 |
[ 0x90, 0xf9, 0x81, 0x45, 0x47, 0x5e, 0xf9, 0x99 ]}; |
|---|
| 14 |
|
|---|
| 15 |
interface nsIWindowCreator : nsISupports { |
|---|
| 16 |
|
|---|
| 17 |
static const char[] IID_STR = NS_IWINDOWCREATOR_IID_STR; |
|---|
| 18 |
static const nsIID IID = NS_IWINDOWCREATOR_IID; |
|---|
| 19 |
|
|---|
| 20 |
extern(System): |
|---|
| 21 |
nsresult CreateChromeWindow(nsIWebBrowserChrome parent, PRUint32 chromeFlags, nsIWebBrowserChrome *_retval); |
|---|
| 22 |
|
|---|
| 23 |
} |
|---|