comparison dwt/internal/mozilla/nsIProperties.d @ 272:dd63eb078d7a

xpcom interfaces necessary for browser code -- source adapted from dxpcom project; these modules still need to be tested and then integrated into dwt browser.
author John Reimer<terminal.node@gmail.com>
date Fri, 18 Jul 2008 05:32:53 -0700
parents
children 942da4b6558a
comparison
equal deleted inserted replaced
271:d472fae79005 272:dd63eb078d7a
1 module mozilla.xpcom.nsIProperties;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6
7 const char[] NS_IPROPERTIES_IID_STR = "78650582-4e93-4b60-8e85-26ebd3eb14ca";
8
9 const nsIID NS_IPROPERTIES_IID=
10 {0x78650582, 0x4e93, 0x4b60,
11 [ 0x8e, 0x85, 0x26, 0xeb, 0xd3, 0xeb, 0x14, 0xca ]};
12
13 extern(System)
14
15 interface nsIProperties : nsISupports {
16
17 static const char[] IID_STR = NS_IPROPERTIES_IID_STR;
18 static const nsIID IID = NS_IPROPERTIES_IID;
19
20 nsresult Get(char *prop, nsIID * iid, void * *result);
21 nsresult Set(char *prop, nsISupports value);
22 nsresult Has(char *prop, PRBool *_retval);
23 nsresult Undefine(char *prop);
24 nsresult GetKeys(PRUint32 *count, char ***keys);
25
26 }
27