|
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.nsIDOMBarProp; |
|---|
| 2 |
|
|---|
| 3 |
import dwt.internal.mozilla.Common; |
|---|
| 4 |
import dwt.internal.mozilla.nsID; |
|---|
| 5 |
import dwt.internal.mozilla.nsISupports; |
|---|
| 6 |
|
|---|
| 7 |
alias PRUint64 DOMTimeStamp; |
|---|
| 8 |
|
|---|
| 9 |
const char[] NS_IDOMBARPROP_IID_STR = "9eb2c150-1d56-11d3-8221-0060083a0bcf"; |
|---|
| 10 |
|
|---|
| 11 |
const nsIID NS_IDOMBARPROP_IID= |
|---|
| 12 |
{0x9eb2c150, 0x1d56, 0x11d3, |
|---|
| 13 |
[ 0x82, 0x21, 0x00, 0x60, 0x08, 0x3a, 0x0b, 0xcf ]}; |
|---|
| 14 |
|
|---|
| 15 |
interface nsIDOMBarProp : nsISupports { |
|---|
| 16 |
|
|---|
| 17 |
static const char[] IID_STR = NS_IDOMBARPROP_IID_STR; |
|---|
| 18 |
static const nsIID IID = NS_IDOMBARPROP_IID; |
|---|
| 19 |
|
|---|
| 20 |
extern(System): |
|---|
| 21 |
nsresult GetVisible(PRBool *aVisible); |
|---|
| 22 |
nsresult SetVisible(PRBool aVisible); |
|---|
| 23 |
|
|---|
| 24 |
} |
|---|